mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-09 17:48:22 +00:00
15 lines
301 B
HTML
15 lines
301 B
HTML
{% extends "base.html" %} {% block content %}
|
|
|
|
<h1 class="capitalize">{{ taxonomy.name }}</h1>
|
|
<ul class="categories">
|
|
{% for term in terms %}
|
|
<li>
|
|
<a href="{{ term.permalink }}" title="{{ term.name }}" class="capitalize"
|
|
>{{ term.name }}</a
|
|
>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock content %}
|