27 lines
835 B
HTML
27 lines
835 B
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>
|
|
{% else %}
|
|
<title>Husstanden</title>
|
|
{% endif %}
|
|
</head>
|
|
<body style="height:100%">
|
|
<div class="p-2" style="height:100%">
|
|
<div class="d-flex" style="height:100%">
|
|
<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' %}
|
|
<script src="{{ url_for('static', filename='js/interact.js') }}"></script>
|
|
</body>
|
|
</html> |