33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<html data-bs-theme="light">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block title %}{{ t!("name") }}{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href='{{ router.assets("assets/css/bootstrap.css") }}'>
|
|
<link rel="stylesheet" href='{{ router.assets("assets/css/main.css") }}'>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon.png">
|
|
|
|
<link rel="stylesheet" href='{{ router.assets("assets/css/fork-awesome.min.css") }}'>
|
|
<link rel="icon" type="image/x-icon" href='{{ router.assets("assets/images/favicon.ico") }}'>
|
|
{% block extra_head %}{% endblock extra_head %}
|
|
</head>
|
|
|
|
<body class="d-flex flex-column min-vh-100">
|
|
{% include "layout/header.html" %}
|
|
|
|
<main class="container" style="padding-top: 100px;">
|
|
{% block main %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="text-center mt-auto pt-4">
|
|
{% block footer_extra %}
|
|
{% include "layout/footer.html" %}
|
|
{% endblock %}
|
|
</footer>
|
|
|
|
<script src='{{ router.assets("assets/js/bootstrap.min.js") }}'></script>
|
|
<script src='{{ router.assets("assets/js/script.js") }}'></script>
|
|
</body>
|
|
</html>
|