| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | first article, safer pointers | Nicolas Dato | 2024-11-26 | 1 | -0/+28 |
Content-Type: text/html; charset=UTF-8 Last-Modified: Sat, 05 Sep 2026 21:10:37 GMT Expires: Tue, 02 Sep 2036 21:10:37 GMT
| index : ndato.com | ||
| This website repository |
| summaryrefslogtreecommitdiff |
| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | first article, safer pointers | Nicolas Dato | 2024-11-26 | 1 | -0/+28 |
{% extends "base.html" %}
{% block title %}{{ taxonomy.name }}{% endblock %}
{% block header %}{{ taxonomy.name }}{% endblock %}
{% block navigation %}<a href="/">Home</a> > <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 %}