Files
lair.moe/templates/header.tmpl
T

18 lines
401 B
Cheetah
Raw Normal View History

2025-07-31 23:34:17 +03:00
<header>
<div class="header-links">
2025-08-01 00:45:24 +03:00
{%- for (l, t) in (
('#', 'О нас'),
(url_for('host'), 'О сервере')
) %}
{%- if l == request.path %}
<strong>{{ t }}</strong>
{%- else %}
<a href="{{ l }}">{{ t }}</a>
{%- endif %}
{%- endfor %}
2025-07-31 23:34:17 +03:00
</div>
{%- if request.path != url_for('index') %}
<a href="{{ url_for('index') }}">Coders Squad</a>
2025-08-01 00:45:24 +03:00
{%- endif %}
2025-07-31 23:34:17 +03:00
</header>