Files
lair.moe/templates/base.tmpl
T

27 lines
610 B
Cheetah
Raw Normal View History

2025-07-03 01:37:41 +03:00
<!DOCTYPE html>
<html>
<head>
<title>Coders Squad</title>
<link rel="stylesheet" href="/static/style/main.css">
<link rel="icon" type="image/webp" href="/static/icon/codrs.webp" />
<script src="/static/script/copy-mono.js"> </script>
2025-08-18 14:25:44 +03:00
<script
src="https://track.codrs.ru/api/script.js"
data-site-id="1"
defer
></script>
2025-07-03 01:37:41 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
{% include 'header.tmpl' %}
<h1>{% block title %}{% endblock %}</h1>
<main>
{% block content %}{% endblock %}
</main>
{% include 'footer.tmpl' %}
</body>
</html>