{% extends "/base.html" %}
{%- block main -%}<section>
<h2><a href="..">{{ T.timezone }}</a></h2>
<ul style="display: grid; gap: 5px; grid-template-columns: repeat(6, min-content); list-style-type: none">{% for tz in timezones %}
<li><a href="../zone={{tz.value}}">{{ tz.label }}</a> ({{ tz.offset }})</li>
{% endfor %}</ul>
</section>{% - endblock %-}