blob: 47bf7beb8076b59b40adbee33b0e63798b5850ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "base.html" %}
{% block content %}
<section id="content">
<h2>Blog posts</h2>
<ul id="post-list">
{% for article in articles_page.object_list %}
<li>
<span class="post-date"><abbr title="{{ article.date.isoformat() }}">{{ article.locale_date }}</abbr></span>
<a class="post-title" href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
</li>
{% endfor %}
</ul>
{% include 'pagination.html' %}
</section>
{% endblock content %}
|