husstanden/templates/layout/dash.html

25 lines
599 B
HTML
Raw Normal View History

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-23 13:54:26 +02:00
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand" href="#">Navbar</a>
</nav>
<div class="d-flex">
<div class="p-2" style="flex:0 0 320px;">
2019-03-29 15:14:45 +01:00
{% include 'layout/includes/nav.html' %}
2019-04-23 13:54:26 +02:00
</div>
<div class="col p-2">
2019-03-29 11:00:04 +01:00
{% block content %}{% endblock %}
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>