blob: dcfe70896d0059a2b68dec9e6ee17225290cedfe [file] [log] [blame]
Giulio Fidente44ccac72013-03-21 18:51:03 +01001{% extends "base.html" %}
2{% block content %}
3{% set custom_header = "Index" %}
4{% include "header.html" %}
5{% for article in articles_page.object_list %}
6<article>
7 <h1 id="title">
8 <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a>
9 </h1>
10 <div id="article_content">
11 {{ article.summary }}
12 </div>
13</article>
Giulio Fidente91c1d452013-03-22 15:15:17 +010014{% if not loop.last %}
15<hr />
16{% endif %}
Giulio Fidente44ccac72013-03-21 18:51:03 +010017{% endfor %}
18<footer>
19 {% include "pagination.html" %}
20</footer>
21{% endblock %}