Files
pelican-themes/syte/templates/index.html
2012-10-20 02:52:02 +02:00

19 lines
448 B
HTML

{% 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.summary}}
</article>
{% endfor %}
{% include "pagination.html" %}
</section>
{% endblock %}