husstanden/templates/layout/dash.html
2019-03-29 11:01:31 +01:00

15 lines
304 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>
{% block content %}{% endblock %}
{% include 'layout/includes/boot-body.html' %}
</body>
</html>