{% extends "kioblog/base.html" %} {% load i18n %} {% load static %} {% block content %}
{% if category %}

{{ category.title }}

{% endif %} {% if tag %}

#{{ tag.title }}

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

{{ post.category.title }}

{{ post.title }}

{{ post.user.get_full_name }} {{ post.published|date:'Y/m/d' }} · {{ post.reading_time }} min read
{% if post.image %}
{{ post.title }} {% endif %}
{{ post.display_excerpt }}
{% if post.tags.all %}
{% for post_tag in post.tags.all %} #{{ post_tag.title }} {% endfor %}
{% endif %}
{% endfor %}
{% if posts.has_other_pages %}
{% if posts.has_previous %} {% if tag %} « {% elif category %} « {% else %} « {% endif %} {% else %} « {% endif %} {% for i in page_range %} {% if posts.number == i %} {{ i }} {% elif tag %} {{ i }} {% elif category %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if posts.has_next %} {% if tag %} » {% elif category %} » {% else %} » {% endif %} {% else %} » {% endif %}
{% endif %} {% endblock %}