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() }}
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='tree.css') }}">
|
|
|
|
{% endblock %}
|
2017-07-23 19:56:51 +02:00
|
|
|
|
2019-05-02 15:31:25 +02:00
|
|
|
<title>Lookyloo</title>
|
2019-04-18 17:34:36 +02:00
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Your page contont -->
|
|
|
|
{% block content %}{% endblock%}
|
2017-09-25 15:11:01 +02:00
|
|
|
|
2019-04-18 17:34:36 +02:00
|
|
|
{% block scripts %}
|
|
|
|
<!-- Optional JavaScript -->
|
|
|
|
{{ bootstrap.load_js() }}
|
|
|
|
<script src='{{ url_for('static', filename='FileSaver.js') }}'></script>
|
|
|
|
<script src='{{ url_for('static', filename='d3.v5.min.js') }}'></script>
|
|
|
|
{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|