blob: 18961447beda401529d69d950ea66069410d93d5 [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "base.html" %}
2{% block content %}
Giulio Fidente8305e742013-03-22 23:17:45 +01003<header>
Giulio Fidente6e18a6a2013-03-22 23:29:41 +01004 <h3>
5 Index
6 {% block headnotes %}
7 {% if FEED_ALL_ATOM %}&gt; <a href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}">Full Atom Feed</a>{% endif %}
8 {% endblock headnotes %}
9 </h3>
Giulio Fidente8305e742013-03-22 23:17:45 +010010</header>
Giulio Fidente6e18a6a2013-03-22 23:29:41 +010011{% for article in articles_page.object_list %}
12<article>
13 <h1 id="title">
14 <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a>
15 </h1>
16 <div id="article_content">
17 {{ article.summary }}
18 </div>
19</article>
20{% if not loop.last %}
21<hr />
22{% endif %}
23{% endfor %}
Giulio Fidente44ccac72013-03-21 18:51:03 +010024<footer>
25 {% include "pagination.html" %}
26</footer>
27{% endblock %}