{% extends "base.html" %} {% block title %}{{ site_name }}{% endblock %} {% block content %}
{% for post in posts %}
{% if post.thumbnail %}
{{ post.title }}
{% endif %}
{% if post.category_name %}
{{ post.category_name }}
{% endif %}

{{ post.title }}

{{ post.excerpt or (post.body | excerpt) }}

{% if post.author_name %} / {{ post.author_name }} {% endif %}
{% else %}

まだ投稿がありません。

{% endfor %}
{% if pagination %} {% endif %} {% endblock %}