25 lines
602 B
HTML
25 lines
602 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include 'layout/includes/boot-head.html' %}
|
|
{% if title %}
|
|
<title>Husstanden - {{ title }}</title>
|
|
{% else %}
|
|
<title>Husstanden</title>
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
<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' %}
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'layout/includes/boot-body.html' %}
|
|
</body>
|
|
</html> |