blob: 9f4206459ef280a27832025f2abbd4ce7162bba5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends 'base.html' %}
{% block main_section %}
<section class="main-section blog-section" id="blog-posts">
{% for article in articles_page.object_list %}
<h3 class="date">{{article.locale_date}}</h3>
<article>
<hgroup>
<h2><a href="{{article.url}}" title="Permalink to {{article.title}}">{{article.title}}</a></h2>
</hgroup>
{{article.content}}
</article>
{% endfor %}
{% include "pagination.html" %}
</section>
{% endblock %}
|