You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
821 B
30 lines
821 B
{% extends "page_template.html" %}
|
|
{% import "macros.html" as macros %}
|
|
|
|
{% block css %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="/blog.css"/>
|
|
<link rel="stylesheet" href="/projets.css"/>
|
|
{% endblock css %}
|
|
|
|
{% block content %}
|
|
<div class="categories-button">
|
|
<a class ="button" href="/categories">Catégories</a>
|
|
</div>
|
|
{% for page in paginator.pages %}
|
|
{{ macros::page_in_list(page=page) }}
|
|
{% endfor %}
|
|
|
|
<nav class="center little-margin-bottom">
|
|
<p>
|
|
{% if paginator.previous %}
|
|
<a href="{{ paginator.previous }}" class="link">« Précédent</a> |
|
|
{% endif %}
|
|
<span>Page {{ paginator.current_index }} sur {{ paginator.number_pagers }}</span>
|
|
{% if paginator.next %}
|
|
| <a href="{{ paginator.next }}" class="link">Suivant »</a>
|
|
{% endif %}
|
|
</p>
|
|
</nav>
|
|
{% endblock content %}
|