Move files to actual applets

This commit is contained in:
Jonathan Carter
2024-09-12 18:01:52 +02:00
parent 8661952137
commit 71011fcafd
26 changed files with 312 additions and 269 deletions

21
src/templates/layout.html Normal file
View File

@@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/bulma.css" rel="stylesheet">
<link href="/static/welcome.css" rel="stylesheet">
<script src="/static/htmx.min.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="bg"></div>
<div style="min-height: 80%; left: 22%; right: 22%; top: 50px; bottom: 50px; position: absolute; width:1000px; height:800;" class="container">
<div class="notification is-dark">
{% block body %}
{% endblock %}
</body>
</html>