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-06-29 16:20:23 +03:00
|
|
|
<link rel="stylesheet" href="{{ crate::find_hash("/public/styles/common/base.css") }}"></link>
|
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>
|