{% extends "base.html" %} {% block head %} {{ super() }} {% endblock head %} {% block content_title %}{% endblock %} {% block content %}

Hi, I'm {{ AUTHOR }}

{% if articles %}
    {% block heading %}

    Latest Posts

    {% endblock %} {% for article in (articles_page.object_list if articles_page else articles) %}
  1. {{ article.title }}

    {% if DISPLAY_SUMMARY and article.summary|length > 0 %}

    {{ article.summary }}

    {% endif %} @{{ article.author }} in
  2. {% endfor %}
{% endif %} {% if articles_page and articles_paginator.num_pages > 1 %} {% include 'pagination.html' %} {% endif %} {% endblock content %}