20 lines
471 B
Cheetah
20 lines
471 B
Cheetah
|
|
<header>
|
||
|
|
{%- if request.path != url_for('.index') %}
|
||
|
|
<a href="{{ url_for('.index') }}">Main</a>
|
||
|
|
{%- else %}
|
||
|
|
<a href="{{ url_for('root.index') }}">Lair</a>
|
||
|
|
{%- endif %}
|
||
|
|
|
||
|
|
<div class="header-links">
|
||
|
|
{%- for (l, t) in (
|
||
|
|
('.contacts', _('contacts')),
|
||
|
|
('.donate', _('donate'))
|
||
|
|
) %}
|
||
|
|
{%- if url_for(l) == request.path %}
|
||
|
|
<strong>{{ t }}</strong>
|
||
|
|
{%- else %}
|
||
|
|
<a href="{{ url_for(l) }}">{{ t }}</a>
|
||
|
|
{%- endif %}
|
||
|
|
{%- endfor %}
|
||
|
|
</div>
|
||
|
|
</header>
|