2024-01-17 15:43:51 +00:00
|
|
|
{% extends "base.html" %}
|
2023-06-01 21:25:13 +00:00
|
|
|
|
2024-01-17 15:43:51 +00:00
|
|
|
{% block content %}
|
2023-06-01 21:25:13 +00:00
|
|
|
<center>
|
|
|
|
<h1>Sitemap</h1>
|
2024-01-17 15:43:51 +00:00
|
|
|
<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>
|
2024-01-17 15:43:51 +00:00
|
|
|
</div>
|
2023-06-01 21:25:13 +00:00
|
|
|
</center>
|
2024-01-17 15:43:51 +00:00
|
|
|
{% endblock %}
|