husstanden/templates/layout/dash.html

27 lines
779 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-04-25 19:07:46 +02:00
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
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 %}
<title>Husstanden - {{ title }}</title>
{% else %}
<title>Husstanden</title>
{% endif %}
</head>
<body>
2019-04-24 15:57:54 +02:00
<div class="p-2">
<div class="d-flex">
<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' %}
2019-03-29 11:00:04 +01:00
{% block content %}{% endblock %}
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-03-29 11:00:04 +01:00
</body>
</html>