2019-03-29 11:00:04 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2019-03-29 11:01:31 +01:00
|
|
|
{% include 'layout/includes/boot-head.html' %}
|
2019-03-29 11:00:04 +01:00
|
|
|
{% if title %}
|
|
|
|
<title>Husstanden - {{ title }}</title>
|
|
|
|
{% else %}
|
|
|
|
<title>Husstanden</title>
|
|
|
|
{% endif %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-04-24 15:57:54 +02:00
|
|
|
<div class="p-2">
|
|
|
|
<div class="d-flex">
|
|
|
|
<div class="col p-2" style="flex:0 0 320px;">
|
|
|
|
{% include 'layout/includes/side_nav.html' %}
|
|
|
|
</div>
|
|
|
|
<div class="col p-2">
|
|
|
|
{% include 'layout/includes/top_nav.html' %}
|
2019-03-29 11:00:04 +01:00
|
|
|
{% block content %}{% endblock %}
|
2019-04-24 15:57:54 +02:00
|
|
|
</div>
|
2019-04-23 13:54:26 +02:00
|
|
|
</div>
|
2019-03-29 15:14:45 +01:00
|
|
|
</div>
|
2019-04-23 13:54:26 +02:00
|
|
|
{% include 'layout/includes/boot-body.html' %}
|
2019-03-29 11:00:04 +01:00
|
|
|
</body>
|
|
|
|
</html>
|