mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2024-10-01 01:05:53 -04:00
12 lines
332 B
Twig
12 lines
332 B
Twig
{% extends '_default/page.html.twig' %}
|
|
|
|
{%- block content ~%}
|
|
{{- parent() ~}}
|
|
<ul>
|
|
{%- for term in page.terms ~%}
|
|
<li>
|
|
<h2><a href="{{ url(page.path ~ '/' ~ term.id) }}">{{ term.name }}</a> ({{ term|length }})</h2>
|
|
</li>
|
|
{%- endfor ~%}
|
|
</ul>
|
|
{%- endblock ~%} |