Files
lair.moe/blueprints/root/templates/header.tmpl
T

20 lines
432 B
Cheetah
Raw Normal View History

2025-07-03 01:37:41 +03:00
<header>
2026-01-17 18:55:25 +03:00
{%- if request.path != url_for('.index') %}
<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 (
2026-01-17 18:55:25 +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>