2010-08-17 20:28:51 +02:00
|
|
|
{% extends "base.html" %}
|
2012-12-02 16:10:11 -08:00
|
|
|
{% block content %}
|
2010-08-17 20:28:51 +02:00
|
|
|
<section id="content">
|
2010-09-19 22:29:56 +01:00
|
|
|
{% block content_title %}
|
|
|
|
|
<h2>All articles</h2>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2010-08-17 20:28:51 +02:00
|
|
|
<ol id="post-list">
|
2012-12-02 16:10:11 -08:00
|
|
|
{% for article in articles_page.object_list %}
|
|
|
|
|
<li><article class="hentry">
|
|
|
|
|
<header> <h2 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2> </header>
|
2010-08-17 20:28:51 +02:00
|
|
|
<footer class="post-info">
|
2011-02-01 21:44:50 +00:00
|
|
|
<abbr class="published" title="{{ article.date.isoformat() }}"> {{ article.locale_date }} </abbr>
|
2013-07-05 01:08:45 +02:00
|
|
|
<address class="vcard author">By
|
|
|
|
|
{% for author in article.authors %}
|
|
|
|
|
<a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</address>
|
2010-08-17 20:28:51 +02:00
|
|
|
</footer><!-- /.post-info -->
|
|
|
|
|
<div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content -->
|
|
|
|
|
</article></li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ol><!-- /#posts-list -->
|
2012-05-14 18:46:27 +01:00
|
|
|
{% include 'pagination.html' %}
|
2010-08-17 20:28:51 +02:00
|
|
|
</section><!-- /#content -->
|
|
|
|
|
{% endblock content %}
|