home/templates/base.html
2024-04-09 14:13:34 +02:00

18 lines
337 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://unpkg.com/hyperscript.org@0.9.12"></script>
<link rel="stylesheet" href="./style.css">
<title>Sondell</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>