2025-07-03 01:37:41 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2025-12-31 12:01:40 +03:00
|
|
|
<title>Lair</title>
|
2025-07-03 01:37:41 +03:00
|
|
|
|
|
|
|
|
<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
|
2025-12-31 12:01:40 +03:00
|
|
|
src="https://track.lair.moe/api/script.js"
|
2025-08-18 14:25:44 +03:00
|
|
|
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">
|
2025-12-31 13:32:41 +03:00
|
|
|
<meta name="mock-email" content="admin@example.com">
|
2025-07-03 01:37:41 +03:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{% include 'header.tmpl' %}
|
|
|
|
|
|
|
|
|
|
<h1>{% block title %}{% endblock %}</h1>
|
|
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
{% include 'footer.tmpl' %}
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|