mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-12-22 18:34:25 +01:00
Thomas Schmid
f89c9a86c9
Bootstrap requires us to wrap the content in a container any time the grid system is used. Wrapping the content with a <div class="container"> fixes some padding issues we have with the frontend on small screens. Signed-off-by: Thomas Schmid <tom@lfence.de>
20 lines
558 B
HTML
20 lines
558 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>
|
|
<div class="container">
|
|
{% block content %}{%- endblock content %}
|
|
</div>
|
|
<div class="footer-copyright text-center py-3 small">
|
|
Ralf Ramsauer © 2018 Binary Kitchen e.V.
|
|
</div>
|
|
{% block scripts %}{%- endblock scripts %}
|
|
</body>
|
|
</html>
|