2019-02-12 17:28:02 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2019-02-12 17:35:58 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='const/css/bootstrap.min.css') }}">
|
2019-02-12 18:57:45 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='const/css/fontawesome.min.css') }}">
|
2019-02-12 17:28:02 +01:00
|
|
|
|
|
|
|
{% if title %}
|
|
|
|
<title>Husstanden - {{ title }}</title>
|
|
|
|
{% else %}
|
|
|
|
<title>Husstanden</title>
|
|
|
|
{% endif %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block content %}{% endblock %}
|
2019-02-12 17:35:58 +01:00
|
|
|
<script src="{{ url_for('static', filename='const/js/jquery-3.3.1.slim.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='const/js/popper.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='const/js/bootstrap.min.js') }}"></script>
|
2019-02-12 17:28:02 +01:00
|
|
|
</body>
|
|
|
|
</html>
|