husstanden/templates/layout/dash.html
2019-04-23 13:54:26 +02:00

25 lines
599 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>
<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;">
{% include 'layout/includes/nav.html' %}
</div>
<div class="col p-2">
{% block content %}{% endblock %}
</div>
</div>
{% include 'layout/includes/boot-body.html' %}
</body>
</html>