thematdevdotorg/app/templates/index.html

41 lines
1.5 KiB
HTML
Raw Normal View History

2020-11-04 11:30:38 +03:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-01-12 22:16:32 +03:00
<link rel="stylesheet" href="{{ url_for('static', filename='css/fonts.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/snowfall.css') }}">
2020-11-04 11:30:38 +03:00
<title>thematdev</title>
</head>
<body>
<snowfall>
{% for snowflake in snowfall %}
<snowflake>{{snowflake|safe}}</snowflake>
{% endfor %}
</snowfall>
2020-11-04 11:30:38 +03:00
<div class="pagehead">
2020-11-06 17:51:15 +03:00
<div class="pagehead-inner">
<h1 class="mainh">С Новым Годом!</h1>
2020-11-06 17:51:15 +03:00
<h1 class="mainh">thematdev</h1>
<div class="btn-container">
<a class="btn" href="https://git.thematdev.org">
Git
2021-01-12 22:16:32 +03:00
</a>
2021-08-26 23:48:30 +03:00
<a class="btn" href="https://wiki.thematdev.org">
2020-11-06 17:51:15 +03:00
Wiki
2021-01-12 22:16:32 +03:00
</a>
<a class="btn" href="https://t.me/thematdev">
2020-11-06 17:51:15 +03:00
TG
2021-01-12 22:16:32 +03:00
</a>
<a class="btn" href="mailto:thematdev@thematdev.org">
@
</a>
<a class="btn" href="https://codeforces.com/profile/thematdev">
CF
</a>
2020-11-06 17:51:15 +03:00
</div>
</div>
2020-11-04 11:30:38 +03:00
</div>
</body>
</html>