2024-06-30 22:47:28 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
2025-01-31 15:40:23 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2025-02-10 00:57:14 +02:00
|
|
|
<style>{% include "components/core/style.css"%} </style>
|
|
|
|
<script>{% include "components/core/script.js"%} </script>
|
2024-06-30 22:47:28 +03:00
|
|
|
|
|
|
|
{% block head %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="content">{% block content %}{% endblock %}</div>
|
2024-07-01 18:24:37 +03:00
|
|
|
<footer>
|
|
|
|
<p>v{{ crate::VERSION }}</p>
|
|
|
|
</footer>
|
2024-06-30 22:47:28 +03:00
|
|
|
</body>
|
|
|
|
</html>
|