bookforge/templates/base.html
2026-01-31 00:05:53 +01:00

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='{{ ctx.asset("assets/css/bootstrap.css") }}'>
<link rel="stylesheet" href='{{ ctx.asset("assets/css/main.css") }}'>
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon.png">
<link rel="stylesheet" href='{{ ctx.asset("assets/css/fork-awesome.min.css") }}'>
<link rel="icon" type="image/x-icon" href='{{ ctx.asset("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='{{ ctx.asset("assets/js/bootstrap.min.js") }}'></script>
<script src='{{ ctx.asset("assets/js/script.js") }}'></script>
</body>
</html>