forked from s3lph/matemat
17 lines
332 B
HTML
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>
|