lookyloo/website/web/templates/main.html

33 lines
814 B
HTML
Raw Normal View History

2019-04-18 17:34:36 +02:00
<!doctype html>
<html lang="en">
<head>
{% block head %}
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
2017-07-23 19:56:51 +02:00
2019-04-18 17:34:36 +02:00
{% block styles %}
<!-- Bootstrap CSS -->
{{ bootstrap.load_css() }}
2020-02-03 18:30:41 +01:00
<link rel="stylesheet" href="{{ url_for('static', filename='tree.css') }}">
2019-04-18 17:34:36 +02:00
{% endblock %}
2017-07-23 19:56:51 +02:00
2020-02-03 18:30:41 +01:00
<title>
{% block title %}{% endblock%}
</title>
2019-04-18 17:34:36 +02:00
{% endblock %}
</head>
<body>
2020-02-04 19:15:44 +01:00
<!-- Your page content -->
<div class="container">
2020-02-03 18:30:41 +01:00
{% block content %}{% endblock%}
</div>
2017-09-25 15:11:01 +02:00
2019-04-18 17:34:36 +02:00
{% block scripts %}
<!-- Optional JavaScript -->
{{ bootstrap.load_js() }}
{% endblock %}
</body>
</html>