{% extends "torina_blog/base.html" %} {% load static %} {% block nav_home %}active{% endblock %} {% block content %} {% for post in post_list %}
{% if post.thumbnail %} {% else %} {% endif %}

{{ post.title }}

{{ post.category.parent }} {{ post.category }} {% for tag in post.tag.all %} {{ tag.name }} {% endfor %}

{{ post.created_at }}

{% if user.is_authenticated %}

管理画面へ

{% endif %} 続きを読む
{% endfor %}
{% include "torina_blog/page.html" %}
{% endblock %}