pyro/templates/index.html

15 lines
385 B
HTML

{% extends 'base.html' %}
{% block content %}
{% block title%}
<h1>Tous les articles</h1>
{% endblock %}
<!-- A wrapper for all the blog posts -->
{% for article in articles_page.object_list %}
{% if category is defined or article.category not in CATEGORY_EXCLUDE_INDEX %}
{% include 'post.html' %}
<hr>
{% endif %}
{% endfor %}
{% include 'pagination.html' %}
{% endblock content %}