Files
lair.moe/templates/header.tmpl
T

18 lines
409 B
Cheetah
Raw Normal View History

2025-07-03 01:37:41 +03:00
<header>
<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>
{%- if request.path != url_for('index') %}
<a href="{{ url_for('index') }}">Coders Squad</a>
{%- endif %}
</header>