husstanden/templates/layout/dash.html
2019-04-24 15:57:54 +02:00

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>