{% extends "base.html" %}
{% block head %}
{{ super() }}
{% if DESCRIPTION %}
{% endif %}
{% endblock %}
{% block title %}
{{ SITENAME }} | {{ SITESUBTITLE }}
{% endblock %}
{% block page_header %}
Articles
{% endblock %}
{% block content %}
{% for article in articles_page.object_list %}
-
{{ article.locale_date }}
{% if not HIDE_CATEGORIES %}
-
{{ article.category }}
{% endif %}
{% if not HIDE_AUTHORS and article.authors %}
-
{% for author in article.authors %}
{{ author }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if TAGS_IN_INDEX and article.tags %}
-
{% for tag in article.tags %}
#{{ tag }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{{ article.summary|striptags }}
{% if not loop.last %}
{% endif %}
{% endfor %}
{% include 'include/pagination.html' %}
{% endblock %}