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