{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %}
{% if articles %}

{# {{ SITENAME }} #} {% if SITESUBTITLE %} {{ SITESUBTITLE }}{% endif %} {#:#}

{% for article in articles_page.object_list %}

{{ article.title }}

{% if not HIDE_DATE %}{% endif %}
{{ article.content }}
{% endfor %} {% else %} No posts found. {% endif %} {% if DEFAULT_PAGINATION %}
{% if articles_page.has_previous() %} {% if articles_page.previous_page_number() == 1 %} <<< {% else %} <<< {% endif %} {% endif %} Page {{ articles_page.number }} / {{ articles_paginator.num_pages }} {% if articles_page.has_next() %} >>> {% endif %}
{% endif %}
{% endblock content %}