{% extends "base.html" %} {% block head %} {% endblock %} {% set active_page = "blog" %} {% set active_page_url = "index.html" %} {% if article.blog_id == "newsletter" %} {% set active_page_title = "The XMPP Newsletter" %} {% else %} {% set active_page_title = "The XMPP Blog" %} {% endif %} {% set content_layout = "single-column" %} {% block content %}

{{ article.title }}

{{ article.content }}
Posted by {% if article.authors %} {% for author in article.authors %} {{ author }}{% if not loop.last %},{% endif %} {% endfor %} {% else %} {{ article.author }} {% endif %} on {{ article.date|strftime('%B, %d, %Y') }} - filed under {{ article.category }}
{% endblock %}