15 lines
290 B
HTML
15 lines
290 B
HTML
|
<!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>
|