tmtd/templates/base.html
2022-05-31 15:43:56 +02:00

12 lines
210 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tmtd</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
{% block content %} {% endblock %}
</body>
</html>