Website/theme/templates/index.html

21 lines
531 B
HTML

{% extends "base.html" %}
{% block content %}
<article>
{% for page in hidden_pages %}
{{ page.content }}
{% endfor %}
</article>
<div class="separator"></div>
{% if articles %}
{% for article in articles_page.object_list %}
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<h2><a href="{{ article.url }}">{{ article.title }}</a></h2>
{{ article.content }}
</article>
{% endfor %}
{% include 'pagination.html' %}
{% endif %}
{% endblock content %}