16 lines
704 B
HTML
Raw Normal View History

2025-01-24 23:58:28 +03:00
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
2025-01-31 16:37:45 +03:00
<script src="{{ url_for('static', filename='scripts/animation.js') }}"></script>
2025-01-24 23:58:28 +03:00
<meta charset="UTF-8">
2025-01-30 00:22:19 +03:00
2025-04-06 23:00:05 +03:00
2025-02-13 23:50:39 +03:00
{%- if request.path != url_for('index') %}
2025-01-30 00:22:19 +03:00
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/base16/ros-pine-moon.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
2025-01-31 16:23:22 +03:00
<script>hljs.highlightAll();</script>
2025-02-13 23:50:39 +03:00
{%- endif %}
2025-02-04 14:28:02 +03:00
<link rel="icon" type="image/png" href="{{ url_for('static', filename='imgs/main_icon.png') }}">
<title>CTF для самых маленьких</title>
2025-01-24 23:58:28 +03:00
</head>