1 {% extends "base.html" %}
6 {% for entry in entries %}
7 <h1>{{ entry.title|escape }}</h1>
8 {{ entry.content|restructuredtext }}
9 <p>Posted: {{ entry.publish_date|date:"Y-m-d H:i" }} in
10 {% for section in entry.sections.all %}
11 {% if forloop.first %}
12 <a href="{{ section.get_absolute_url }}">{{ section.title }}</a>{% if not forloop.last %}, {% endif %}
15 and <a href="{{ section.get_absolute_url }}">{{ section.title }}</a>
17 <a href="{{ section.get_abolute_url }}">{{ section.title }}</a>
21 <a href="{{ entry.get_absolute_url }}">permalink</a></p>
24 <p class="paginator">Pages:
26 <a href="?page={{ prev }}">Previous</a> |
28 {% for paginator_page in pages %}
29 {% if forloop.first %}
33 {% ifequal paginator_page page %}
36 <a href="?page={{ paginator_page }}">{{ paginator_page }}</a>
40 | <a href="?page={{ next }}">Next</a>
45 <p>We have no blog entries - that sucks!</p>