{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
{% if articles %}
{% for article in articles %}
{# First item #}
{% if loop.first %}
{% if not HIDE_DATE %}{% endif %}
{{ article.content }}{% include 'comments.html' %}
{% if loop.length > 1 %}
All posts
{% endif %}
{# other items #}
{% else %}
- {{ article.title }}
{% endif %}
{% if loop.length > 1 %}
{% endif %}
{% endfor %}
{% else %}
No posts found.
{% endif %}
{% endblock content %}