husstanden/templates/layout/bootstrap.html

15 lines
304 B
HTML
Raw 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 %}
<title>Husstanden - {{ title }}</title>
{% 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>