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

{{ author.name }}

{% if author.email %}

{{ author.email }}

{% endif %} {% if author.bio %}

{{ author.bio }}

{% endif %}

{{ author.name }} さんの記事 ({{ posts | length }})

{% for post in posts %}

{{ post.title }}

{{ post.created_at }}

{{ post.content | truncate(100) }}

{% else %}

まだ記事がありません。

{% endfor %} {% endblock %}