{% extends "base.html" %} {% block title %}記事一覧 | ddb_single Blog{% endblock %} {% block content %}

記事一覧

+ 記事を書く
{% if q %}

「{{ q }}」の検索結果: {{ posts | length }} 件

{% endif %} {% for post in posts %}

{{ post.title }}

by {{ post.author or "不明" }} ・ {{ post.created_at }}

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

{% else %}

まだ記事がありません。最初の記事を書いてみましょう

{% endfor %} {% endblock %}