oswilno/assets/templates/base.html

28 lines
726 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/reset.css" rel="stylesheet"/>
<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) %}
<p class="error">{{e}}</p>
{% when None %}
{% endmatch %}
<article>
{% include "nav.html" %}
{% block content %}{% endblock %}
</article>
</main>
</body>
</html>