1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-09-20 21:23:57 +02:00
doorlockd-mirror/share/doorlockd/templates/layout.html
Ralf Ramsauer b7ba8ebe18 doorlockd: templates: fix bug in meta tags
Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
2018-09-08 23:25:03 +02:00

17 lines
491 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
{% block head %}{%- endblock head %}
<title>{{ title }}</title>
{% block metas %}{%- endblock metas %}
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
{% block content %}{%- endblock content %}
<br><br><br>
<footer>Ralf Ramsauer &copy; 2018 Binary Kitchen e.V.</footer>
{% block scripts %}{%- endblock scripts %}
</body>
</html>