33 lines
381 B
HTML
33 lines
381 B
HTML
<html>
|
|
<head>
|
|
|
|
<!--
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles/dm.css') }}">
|
|
-->
|
|
|
|
{% if auto_refresh %}
|
|
<meta http-equiv="refresh" content="5">
|
|
{% endif %}
|
|
|
|
<style>
|
|
body {
|
|
background-color: #1a1a1a;
|
|
color: #e0e0e0;
|
|
}
|
|
</style>
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
|
|
</head>
|
|
<body>
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html> |