{% extends "base.html" %} {% block title %}{{ post.title }} | ddb_single Blog{% endblock %} {% block content %}

{{ post.title }}

by {% if author %} {{ author.name }} {% else %} {{ post.author or "不明" }} {% endif %} ・ {{ post.created_at }}

{{ post.content }}

コメント ({{ comments | length }})

{% for comment in comments %}

{{ comment.author_name }} ・ {{ comment.created_at }}

{{ comment.body }}
{% else %}

まだコメントはありません。

{% endfor %}

コメントを書く

{% endblock %}