2010-08-17 20:28:51 +02:00
|
|
|
{% extends "base.html" %}
|
2012-12-02 16:10:11 -08:00
|
|
|
{% block content %}
|
2010-09-19 22:29:56 +01:00
|
|
|
{% block content_title %}
|
|
|
|
|
<h2>All articles</h2>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2023-11-11 14:10:08 +01:00
|
|
|
|
2012-12-02 16:10:11 -08:00
|
|
|
{% for article in articles_page.object_list %}
|
2023-11-11 14:10:08 +01:00
|
|
|
<article>
|
|
|
|
|
<header> <h2><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2> </header>
|
|
|
|
|
<section>{{ article.summary }}</section>
|
|
|
|
|
<footer>
|
|
|
|
|
<p>Published: <time datetime="{{ article.date.isoformat() }}"> {{ article.locale_date }} </time></p>
|
|
|
|
|
<address>By
|
2013-07-05 01:08:45 +02:00
|
|
|
{% for author in article.authors %}
|
2023-11-11 14:10:08 +01:00
|
|
|
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
|
2013-07-05 01:08:45 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
</address>
|
2023-11-11 14:10:08 +01:00
|
|
|
</footer>
|
|
|
|
|
</article>
|
2010-08-17 20:28:51 +02:00
|
|
|
{% endfor %}
|
2023-11-11 14:10:08 +01:00
|
|
|
|
2015-06-21 13:35:41 -06:00
|
|
|
{% if articles_page.has_other_pages() %}
|
|
|
|
|
{% include 'pagination.html' %}
|
|
|
|
|
{% endif %}
|
2023-11-11 14:10:08 +01:00
|
|
|
|
2010-08-17 20:28:51 +02:00
|
|
|
{% endblock content %}
|