2024-06-30 22:47:28 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<style>
|
|
|
|
body {
|
2024-07-01 21:16:46 +03:00
|
|
|
position: relative;
|
|
|
|
min-height: 98vh;
|
2024-06-30 22:47:28 +03:00
|
|
|
background-color: #333;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2024-07-01 18:24:37 +03:00
|
|
|
footer {
|
|
|
|
text-align: center;
|
2024-07-01 21:16:46 +03:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
padding-bottom: 2.5rem;
|
2024-07-01 18:24:37 +03:00
|
|
|
}
|
|
|
|
|
2024-06-30 22:47:28 +03:00
|
|
|
table {
|
2024-07-01 18:24:37 +03:00
|
|
|
width: 100%;
|
2024-06-30 22:47:28 +03:00
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-collapse: collapse;
|
2024-07-01 18:24:37 +03:00
|
|
|
margin-top: 10px;
|
2024-06-30 22:47:28 +03:00
|
|
|
|
|
|
|
thead th {
|
|
|
|
background-color: #252525;
|
|
|
|
}
|
|
|
|
}
|
2024-10-06 01:01:04 +03:00
|
|
|
|
|
|
|
ul {
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
2024-06-30 22:47:28 +03:00
|
|
|
</style>
|
|
|
|
|
|
|
|
{% 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>
|