18 lines
401 B
Cheetah
18 lines
401 B
Cheetah
<header>
|
||
<div class="header-links">
|
||
{%- for (l, t) in (
|
||
('#', 'О нас'),
|
||
(url_for('host'), 'О сервере')
|
||
) %}
|
||
{%- if l == request.path %}
|
||
<strong>{{ t }}</strong>
|
||
{%- else %}
|
||
<a href="{{ l }}">{{ t }}</a>
|
||
{%- endif %}
|
||
{%- endfor %}
|
||
</div>
|
||
|
||
{%- if request.path != url_for('index') %}
|
||
<a href="{{ url_for('index') }}">Coders Squad</a>
|
||
{%- endif %}
|
||
</header> |