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-04-25 17:57:22 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/custom.css') }}">
|
2019-03-29 11:00:04 +01:00
|
|
|
{% if title %}
|
2019-05-12 16:04:25 +02:00
|
|
|
<title>Husstanden - {{ _(title) | title }}</title>
|
2019-03-29 11:00:04 +01:00
|
|
|
{% else %}
|
|
|
|
<title>Husstanden</title>
|
|
|
|
{% endif %}
|
2019-05-27 16:24:13 +02:00
|
|
|
<style>
|
|
|
|
#sidenav-container {
|
|
|
|
flex: 0 0 320px;
|
|
|
|
|
|
|
|
display: none;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 768px){
|
|
|
|
#sidenav-container {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1072px){
|
|
|
|
#sidenav-container {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2019-03-29 11:00:04 +01:00
|
|
|
</head>
|
2019-04-25 22:13:44 +02:00
|
|
|
<body style="height:100%">
|
|
|
|
<div class="p-2" style="height:100%">
|
|
|
|
<div class="d-flex" style="height:100%">
|
2019-05-27 16:24:13 +02:00
|
|
|
<div class="col p-2" id="sidenav-container">
|
2019-04-24 15:57:54 +02:00
|
|
|
{% include 'layout/includes/side_nav.html' %}
|
|
|
|
</div>
|
|
|
|
<div class="col p-2">
|
|
|
|
{% include 'layout/includes/top_nav.html' %}
|
2019-05-10 08:24:13 +02:00
|
|
|
<div class="content">
|
2019-03-29 11:00:04 +01:00
|
|
|
{% block content %}{% endblock %}
|
2019-05-10 08:24:13 +02:00
|
|
|
</div>
|
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-04-25 22:13:44 +02:00
|
|
|
<script src="{{ url_for('static', filename='js/interact.js') }}"></script>
|
2019-03-29 11:00:04 +01:00
|
|
|
</body>
|
|
|
|
</html>
|