Files
lescarnetsdakkadien.netig.net/src/templates/grammaire.html
T
2026-08-05 13:53:18 +02:00

39 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block title %}{{ section.title }} · {{ config.title }}{% endblock title %}
{% block content %}
{% include "partials/section-header.html" %}
{{ section.content | safe }}
{{ macros::taxonomy_nav(
kind="themes",
heading_id="grammaire-index-title",
title="Explorer la grammaire",
description="Retrouver les fiches par notion grammaticale.",
path="themes",
link_label="Par thème grammatical"
) }}
{% if section.pages %}
<h2>Liste des fiches</h2>
<ul class="entry-list">
{% for page in section.pages %}
<li>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% if page.description %} — {{ page.description }}{% endif %}
{% if page.taxonomies.themes %}
<div class="entry-list__meta">
{{ macros::taxonomy_links(terms=page.taxonomies.themes, kind="themes") }}
</div>
{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>Aucune fiche nest encore publiée dans cette section.</p>
{% endif %}
{% endblock content %}