initial commit

This commit is contained in:
joachim lusiardi
2015-03-03 22:49:43 +01:00
commit af7ef156fd
7 changed files with 180 additions and 0 deletions

12
templates/layout.html Normal file
View File

@@ -0,0 +1,12 @@
<!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>