{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles %} {# First item #} {% if loop.first %}

{{ SITENAME }} {% if SITESUBTITLE %} {{ SITESUBTITLE }}{% endif %} : {{ article.title }}

{% if not HIDE_DATE %}{% endif %}
{{ article.content }}{% include 'comments.html' %}
{% if loop.length > 1 %}

All posts

    {% endif %} {# other items #} {% else %}
  1. {{ article.title }}
  2. {% endif %} {% endfor %} {% if loop.length > 1 %}
{% endif %} {% else %} No posts found. {% endif %} {% endblock content %}