18 lines
476 B
HTML
18 lines
476 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='reset.css') }}" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}" />
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock %}</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="content">{% block content %}{% endblock %}</div>
|
|
<div id="footer">
|
|
{% block footer %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|