12 lines
254 B
HTML
12 lines
254 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Rollerverbrauch</title>
|
||
|
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Rollerverbrauch</h1>
|
||
|
{% block body %}
|
||
|
{% endblock %}
|
||
|
</body>
|
||
|
</html>
|