husstanden/templates/layout/bootstrap.html
2019-05-12 19:36:06 +01:00

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>