{% extends "base.html" %} {% load markup %} {% block title %} {{ entry.title }} {% endblock %} {% block content %}

{{ entry.title }}

{{ entry.content|restructuredtext }}

Posted: {{ entry.publish_date|date:"Y-m-d H:i" }} {% if entry.sections.count %} in {% for section in entry.sections.all %} {% if forloop.first %} {{ section.title }}{% if not forloop.last %}, {% endif %} {% else %} {% if forloop.last %} and {{ section.title }} {% else %} {{ section.title }} {% endif %} {% endif %} {% endfor %} {% endif %} permalink

{% endblock %}