blog-theme/alchemy/templates/index.html

15 lines
332 B
HTML
Raw Normal View History

2013-11-24 18:53:19 +01:00
{% extends "base.html" %}
{% block content %}
{% block page_title %}
<h1>All Articles</h1>
2013-11-24 18:53:19 +01:00
{% endblock %}
<div>
{% for article in articles_page.object_list %}
{% include "include/article_list.html" %}
{% endfor %}
</div>
2013-11-24 18:53:19 +01:00
{% include 'pagination.html' %}
</div>
{% endblock %}