oswilno/server/assets/templates/base.html
2022-07-29 16:08:59 +02:00

29 lines
767 B
HTML

<!DOCTYPE html>
<html lang="pl">
<head>
<title>OS Wilno</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/assets/css/app.css" rel="stylesheet"/>
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico"/>
<script type="module" src=/assets/js/app.js></script>
{% block head %}{% endblock %}
</head>
<body>
<main>
{% match error %}
{% when Some with (e) %}
<error-message message="{{e}}"></error-message>
{% when None %}
<error-message></error-message>
{% endmatch %}
{% include "nav.html" %}
<article>
{% block content %}{% endblock %}
</article>
<privacy-policy-bar></privacy-policy-bar>
</main>
</body>
</html>