{% extends "base.html" %} | |
{% block title %}Blog | {{ SITENAME }}{% endblock %} | |
{% block content %} | |
{% for article in articles_page.object_list|sort(attribute='no') %} | |
<article> | |
<div class="article_title"> | |
<h3><a href="{{ BLOGURL }}/{{ article.url }}">{{ article.title }}</a></h3> | |
{{ article.summary }} | |
</div> | |
</article> | |
{% if not loop.last %} | |
<hr /> | |
{% endif %} | |
{% endfor %} | |
{% endblock %} | |
{% if BLOCK_FOOTER %} | |
{% block footer %} | |
<footer> | |
{% include "modules/pagination.html" %} | |
</footer> | |
{% endblock %} | |
{% endif %} |