husstanden/templates/layout/main.html
2019-02-12 17:09:43 +01:00

14 lines
224 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
{% if title %}
<title>Husstanden - {{ title }}</title>
{% else %}
<title>Husstanden</title>
{% endif %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>