summaryrefslogtreecommitdiff
path: root/zola/content/articles
Commit message (Collapse)AuthorAgeFilesLines
* adding "inheritance" in C postNicolas Dato2026-05-011-0/+193
|
{% extends "base.html" %}

{% block title %}{{ taxonomy.name }}{% endblock %}
{% block header %}{{ taxonomy.name }}{% endblock %}
{% block navigation %}<a href="/">Home</a> &gt; <a href="{{ current_path | safe }}">{{ taxonomy.name }}</a>{% endblock %}
{% block content %}
<dl title="List of {{ taxonomy.name }} entries">
{% for term in terms %}
<dt>
        <p><a href="{{ term.path | safe}}">{{ term.name }}</a></p>
</dt>
{% endfor %}
</dl>
{% endblock %}