{% extends "biblion/base.html" %} {% load markdown_deux_tags %} {% block header_title %}Blog{% endblock %} {% block content %}
{% if posts%} {% for post in posts%}

{{post}}

{{post.published}}

{{post.teaser_html|safe}}

{% if not forloop.last %}
{% endif %} {% endfor %} {% else %}

There are currently no blog posts published.

{% endif %}
{% endblock %}