23 lines
981 B
HTML
23 lines
981 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Catégorie "{{ category }}" - {{ SITENAME }}{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
<meta property="og:title" content="{{ category }}">
|
|
<meta property="og:description" content="Articles rangés dans la catégorie « {{ category }} »">
|
|
<meta property="og:url" content="{{ SITEURL }}/{{ category.url }}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="category_title">Catégorie « {{ category }} »</h1>
|
|
{% for article in articles_page.object_list %}
|
|
<h2><a title="Lien vers {{ article.title }}" class="post-link" href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
|
|
<p class="infos_article">Publié le {{ article.date|strftime('%d/%m/%Y') }} par {{ article.author }}</p>
|
|
<p>{{ article.summary }}</p>
|
|
<hr/>
|
|
{% endfor %}
|
|
{% if articles_page.has_other_pages() %}
|
|
{% include 'pagination.html' %}
|
|
{% endif %}
|
|
{% endblock %} |