oswilno/crates/oswilno-view/templates/base.html

17 lines
387 B
HTML
Raw Normal View History

2023-08-01 16:29:03 +02:00
<!DOCTYPE html>
<html>
<head>
<title>OS Wilno</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="/assets/build.js" type="module"></script>
2023-08-04 16:32:10 +02:00
<link href="/assets/style.css" rel="stylesheet">
2023-08-01 16:29:03 +02:00
{% block head %}
{% endblock %}
</head>
<body>
<base url="/" />
2023-08-11 22:31:02 +02:00
<main>{{ main }}</main>
2023-08-01 16:29:03 +02:00
</body>
</html>