feat: osint main page

This commit is contained in:
cheeest 2025-04-07 12:48:59 +03:00
parent 0a70a407e5
commit f585a49b5b

View File

@ -1,6 +1,20 @@
<html lang="ru">
{% include '_head.html' %}
<body>
{% include '_header.html' %}
{% include '_sidenav.html' %}
<img id="help" src="{{ url_for('static', filename='imgs/icon.png') }}">
{% include '_head.html' %}
<body>
{% include '_header.html' %}
{% include '_sidenav.html' %}
<div class="container">
<div class="small info1 capsule-window">
<p class="simpletext">< Задания категории OSINT ></p>
<nav class="navbtn">
{%- for name, descr in (
('osintquestions', "Чур ответы не гуглить!"),
('osintgeoguessr', "Профессионал Яндекс-карт"),
('osintrht', "UmVhbGx5IGhhcmQgdGFzaw=="),
) %}
<a href="{{ url_for(name) }}" class="btn1">{{ descr }}</a>
{%- endfor %}
</div>
<img id="help" src="{{ url_for('static', filename='imgs/icon.png') }}">
</body>
</html>