templates: add more basic html structure

Add a basic but this time now valid html structure.

Signed-off-by: Johannes Thumshirn <jth@kernel.org>
pull/1/head
Johannes Thumshirn 4 years ago
parent 4e599be173
commit ac7608958c

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

@ -1,3 +1,18 @@
<!DOCTYPE html>
<head>
<title>F.D.G.L e. V.</title>
<meta charset="utf-8">
<link href="/static/style.css" rel="stylesheet">
</head>
<body>
<header>
<img src="/static/logo.png" alt="logo">
</header>
<main>
{% block content %}
{% endblock %}
</main>
<footer>
<p>&copy; F.D.G.L. e.V.</p>
</footer>
</body>

Loading…
Cancel
Save