lookyloo/website/web/templates/main.html

18 lines
515 B
HTML
Raw Normal View History

2017-07-23 19:56:51 +02:00
{% extends "bootstrap/base.html" %}
{% block scripts %}
{{ super() }}
2018-02-06 01:23:00 +01:00
<script src='{{ url_for('static', filename='FileSaver.js') }}'></script>
2018-04-05 11:17:26 +02:00
<script src='{{ url_for('static', filename='d3.v5.min.js') }}'></script>
2017-07-23 19:56:51 +02:00
{% endblock %}
{% block head %}
{{ super() }}
2017-09-22 00:26:38 +02:00
<link rel="stylesheet" href="{{ url_for('static', filename='tree.css') }}">
2017-09-29 14:43:08 +02:00
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
2017-07-23 19:56:51 +02:00
{% endblock %}
2017-09-25 15:11:01 +02:00
{% block content %}
{{ super() }}
{% endblock %}