1
0
Fork 0
forked from s3lph/matemat
matemat/templates/base.html
2018-07-11 22:06:06 +02:00

17 lines
332 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ setupname }}</title>
<style>
body {
color: #f0f0f0;
background: #000000;
}
</style>
</head>
<body>
<h1>{{ setupname }}</h1>
{% block main %}
{% endblock %}
</body>
</html>