1
0
Fork 0
This repository has been archived on 2024-12-30. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
pelican-alchemy/alchemy/templates/index.html

14 lines
332 B
HTML
Raw Normal View History

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