~alcinnz/bureaucromancy

ref: 93bfa89a9d3a01b22e5ebac4171280bc72760042 bureaucromancy/tpl/cal/timezone.html -rw-r--r-- 364 bytes
93bfa89a — Adrian Cochrane Add a timezone menu! 1 year, 1 month ago
                                                                                
1
2
3
4
5
6
7
8
{% 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 %-}