4095ae955a4d5149249689e7f62c4074e501d7ad
[Ultimately_Untrue_Thought.git] / theme / templates / index.html
1 {% extends "base.html" %}
2 {% block content_title %}{% endblock %}
3
4 {% block content %}
5
6 {% for article in articles_page.object_list %}
7   <article>
8     <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
9     {% include 'metadata.inc.html' %}
10     {{ article.content }}
11   </article>
12   <hr />
13 {% endfor %}
14
15 {% include 'pagination.inc.html' %}
16
17 {% endblock content %}