{% extends "page.dt" %} {% load conversions %} {% block content %}
{% for post in object_list %}

{{ post.title }}

{{ post.author|default_if_none:'Staff' }} {% time_since post.publish_date as elapsed_time %} {% if elapsed_time %} • {{ elapsed_time }} ago

{% endif %} {% if post.teaser %}

{{post.teaser | markdown_to_html | safe }}

Read More → {% else %}

{{post.content | markdown_to_html | safe }}

{% endif %}
{% endfor %}
{%endblock%}