mirror of
https://github.com/torproject/manual.git
synced 2024-11-23 09:29:45 +00:00
15 lines
404 B
HTML
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>
|