husstanden/templates/layout/dash.html

15 lines
290 B
HTML
Raw Normal View History

2019-03-29 11:00:04 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
{% include 'includes/boot-head.html' %}
{% if title %}
<title>Husstanden - {{ title }}</title>
{% else %}
<title>Husstanden</title>
{% endif %}
</head>
<body>
{% block content %}{% endblock %}
{% include 'includes/boot-body.html' %}
</body>
</html>