oswilno/server/assets/templates/base.html

27 lines
668 B
HTML
Raw Normal View History

2022-07-06 15:33:14 +02:00
<!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"/>
2022-07-13 14:54:19 +02:00
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.ico"/>
2022-07-06 15:33:14 +02:00
<script type="module" src=/assets/js/app.js></script>
2022-07-15 16:00:00 +02:00
2022-07-06 15:33:14 +02:00
{% block head %}{% endblock %}
</head>
<body>
<main>
{% match error %}
{% when Some with (e) %}
2022-07-12 15:51:24 +02:00
<p class="error">{{e}}</p>
{% when None %}
{% endmatch %}
2022-07-06 15:33:14 +02:00
<article>
2022-07-21 15:06:14 +02:00
{% include "nav.html" %}
2022-07-06 15:33:14 +02:00
{% block content %}{% endblock %}
</article>
</main>
</body>
</html>