CTF-site-project/templates/utils/_osintsidenav.html

18 lines
642 B
HTML
Raw Normal View History

2025-02-13 23:50:39 +03:00
<div class="navigation capsule-window">
2025-01-27 21:43:30 +03:00
<div class="decore1"></div>
<nav class="navlink">
2025-04-07 15:44:09 +03:00
<a href="{{ url_for('index') }}" class="link">На главную</a>
2025-01-27 23:30:36 +03:00
{%- for link, text in (
2025-04-12 17:18:03 +03:00
('osintfound', "Чур ответы не гуглить!"),
2025-04-07 15:44:09 +03:00
('osintgeoguessr', "Мастер яндекс-карт"),
('osintrht', "Реально сложный таск"),
2025-01-27 22:21:39 +03:00
) %}
2025-01-27 23:30:36 +03:00
{%- if request.path != url_for(link) %}
2025-01-27 22:21:39 +03:00
<a href="{{ url_for(link) }}" class="link">{{ text }}</a>
2025-01-27 23:30:36 +03:00
{%- endif %}
{%- endfor %}
{#- <!-- <a href="">rfi</a>--> #}
{#- <!-- <a href="">lfi</a>--> #}
2025-01-27 21:43:30 +03:00
</nav>
</div>