Files
lair.moe/templates/header.tmpl
T
Sweetbread 96a3ca543b
Docker Build and Push / build-and-push (push) Successful in 3m16s
l10n: add en, de, ja and fr
2025-08-18 14:15:53 +03:00

18 lines
409 B
Cheetah

<header>
<div class="header-links">
{%- for (l, t) in (
('us', _('about us')),
('host', _('about host'))
) %}
{%- if url_for(l) == request.path %}
<strong>{{ t }}</strong>
{%- else %}
<a href="{{ url_for(l) }}">{{ t }}</a>
{%- endif %}
{%- endfor %}
</div>
{%- if request.path != url_for('index') %}
<a href="{{ url_for('index') }}">Coders Squad</a>
{%- endif %}
</header>