structables/templates/sitemap.html

23 lines
503 B
HTML
Raw Normal View History

{% extends "base.html" %}
2023-06-01 21:25:13 +00:00
{% block content %}
2023-06-01 21:25:13 +00:00
<center>
<h1>Sitemap</h1>
<div class="container">
<div class="row sitemap-groups"></div>
{% for group in groups %}
<div class="sitemap-group col-xs-12 col-sm-6 col-lg-4">
2023-06-01 21:25:13 +00:00
<a href="{{ group[1] }}">
<h2>{{ group[0] }}</h2>
</a>
<ul>
{% for channel in group[2] %}
<li><a href="{{ channel[1] }}">{{ channel[0] }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</div>
2023-06-01 21:25:13 +00:00
</center>
{% endblock %}