implement basic features

This commit is contained in:
ghost 2024-01-06 18:24:57 +02:00
parent e8f234d4b9
commit 2071796a07
19 changed files with 389 additions and 365 deletions

View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block head_title_content %}{{ app.name }}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{{ url('main_index') }}css/default.css?{{ app.version }}"/>
</head>
<body>
{% block header_container %}
<header>
{% block header_content %}
<div class="text-align-right">
<strong>
{{ app.name }}
</strong>
</div>
{% endblock %}
</header>
{% endblock %}
{% block main_container %}
<main>
{% block main_content %}{% endblock %}
</main>
{% endblock %}
{% block footer_container %}
<footer>
{% block footer_content %}
<div class="text-align-right">
<small>
{{ 'Powered by' | trans }}
<a href="https://github.com/YGGverse/HLState" target="_blank">HLState</a>
</small>
</div>
{% endblock %}
</footer>
{% endblock %}
</body>
</html>