{% extends "kioblog/base.html" %} {% load i18n %} {% load static %} {% block content %}
{% for post in posts %}

{{ post.category.title }}

{{ post.title }}

{{ post.user.get_full_name }} {{ post.created|date:'Y/m/d' }}
{% if post.image %}
{{ post.title }} {% endif %}
{{ post.first_paragraph|safe }}
{% endfor %}
{% if posts.has_other_pages %}
{% if posts.has_previous %} « {% else %} « {% endif %} {% for i in page_range %} {% if posts.number == i %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if posts.has_next %} » {% else %} » {% endif %}
{% endif %} {% endblock %}