{% extends "base.html" %} {% block title %} {% if flags.is_homepage %} {{ site.title }} {% else %} {{ trail|join:": "|titlecase }} {% endif %} {% endblock %} {% block content %}

{{ trail|last|titlecase }}

{% for record in records %} {% if record.title or record.content|firsth %}

{{ record.title or record.content|firsth|striptags }}

{% endif %} {{ record.content|firstp|wrap:'p' }}

Read more...

{% if not loop.last %}
{% endif %} {% endfor %} {% if paging.is_paged %}

{% if paging.page > 1 %} First ~ Prev ~ {% endif %} Page {{ paging.page }} of {{ paging.total }} {% if paging.page < paging.total %} ~ Next ~ Last {% endif %}

{% endif %} {% endblock %}