1 {% extends "base.html" %}
6 <h1>{{ entry.title }}</h1>
7 {{ entry.content|restructuredtext }}
8 <p>Posted: {{ entry.publish_date|date:"Y-m-d H:i" }}
9 {% if entry.sections.count %}
11 {% for section in entry.sections.all %}
12 {% if forloop.first %}
13 <a href="{{ section.get_absolute_url }}">{{ section.title }}</a>{% if not forloop.last %}, {% endif %}
16 and <a href="{{ section.get_absolute_url }}">{{ section.title }}</a>
18 <a href="{{ section.get_abolute_url }}">{{ section.title }}</a>
23 <a href="{{ entry.get_absolute_url }}">permalink</a>