1
0
Fork 0
forked from s3lph/matemat
matemat/templates/base.html

18 lines
332 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2018-07-11 22:06:06 +02:00
<title>{{ setupname }}</title>
<style>
body {
color: #f0f0f0;
background: #000000;
}
</style>
</head>
<body>
2018-07-11 22:06:06 +02:00
<h1>{{ setupname }}</h1>
{% block main %}
{% endblock %}
</body>
</html>