manual/templates/topics.html
2019-08-20 19:45:09 +02:00

15 lines
404 B
HTML

{% from "macros/topic.html" import render_topic %}
<div id="#topics">
<br />
<br />
{% for item in this.children %}
<h5 class="text-muted mb-3 p-0 {{ bag('alternatives', this.alt, 'direction') }}">
<a href="{{ item|url }}">{{ item.title }}</a>
</h5>
<p class="text-muted mb-3 p-0 {{ bag('alternatives', this.alt, 'direction') }}">
{{ item.description }}
</p>
{% endfor %}
</div>