{% extends "base.html" %} {% set active_page = "blog" %} {% set active_page_url = "index.html" %} {% if page_name == "category/newsletter" %} {% set active_page_title = "The XMPP Newsletter" %} {% else %} {% set active_page_title = "The XMPP Blog" %} {% endif %} {% set active_page_is_blog = "true" %} {% block blog_entries %} {% block content_title %} {% endblock %} {% for article in articles_page.object_list %}

{{ article.title }}

{{ article.summary }}

Continue reading “{{ article.title }}” »

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 }}
{% endfor %} {% include 'pagination.html' %} {% endblock %} {% block blog_feeds %} {% include "feeds.html" %} {% endblock %} {% block blog_categories %} {% include "categories.html" %} {% endblock %} {% block blog_archives %} {% include "period_archives.html" %} {% endblock %}