Files
lair.moe/templates/header.tmpl
T

20 lines
428 B
Cheetah
Raw Normal View History

2025-07-03 01:37:41 +03:00
<header>
2025-09-05 13:57:52 +03:00
{%- if request.path != url_for('index') %}
2025-12-31 12:01:40 +03:00
<a href="{{ url_for('index') }}">Lair</a>
2025-09-05 13:57:52 +03:00
{%- else %}
<div></div>
{%- endif %}
2025-07-03 01:37:41 +03:00
<div class="header-links">
{%- for (l, t) in (
2025-08-09 02:28:03 +03:00
('us', _('about us')),
('host', _('about host'))
2025-07-03 01:37:41 +03:00
) %}
{%- if url_for(l) == request.path %}
<strong>{{ t }}</strong>
{%- else %}
<a href="{{ url_for(l) }}">{{ t }}</a>
{%- endif %}
{%- endfor %}
</div>
</header>