husstanden/templates/layout/bootstrap.html

15 lines
307 B
HTML
Raw Permalink Normal View History

2019-02-12 17:28:02 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-03-29 11:01:31 +01:00
{% include 'layout/includes/boot-head.html' %}
2019-02-12 17:28:02 +01:00
{% if title %}
2019-05-12 20:36:06 +02:00
<title>Husstanden - {{ _(title) }}</title>
2019-02-12 17:28:02 +01:00
{% else %}
<title>Husstanden</title>
{% endif %}
</head>
<body>
{% block content %}{% endblock %}
2019-03-29 11:01:31 +01:00
{% include 'layout/includes/boot-body.html' %}
2019-02-12 17:28:02 +01:00
</body>
</html>