49 lines
1.1 KiB
HTML
49 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include 'layout/includes/boot-head.html' %}
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/custom.css') }}">
|
|
{% if title %}
|
|
<title>Husstanden - {{ _(title) | title }}</title>
|
|
{% else %}
|
|
<title>Husstanden</title>
|
|
{% endif %}
|
|
<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>
|
|
</head>
|
|
<body style="height:100%">
|
|
<div class="p-2" style="height:100%">
|
|
<div class="d-flex" style="height:100%">
|
|
<div class="col p-2" id="sidenav-container">
|
|
{% include 'layout/includes/side_nav.html' %}
|
|
</div>
|
|
<div class="col p-2">
|
|
{% include 'layout/includes/top_nav.html' %}
|
|
<div class="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'layout/includes/boot-body.html' %}
|
|
<script src="{{ url_for('static', filename='js/interact.js') }}"></script>
|
|
</body>
|
|
</html> |