mirror of https://github.com/CIRCL/lookyloo
33 lines
908 B
HTML
33 lines
908 B
HTML
<!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') }}">
|
|
|
|
{% block styles %}
|
|
<!-- Bootstrap CSS -->
|
|
{{ bootstrap.load_css() }}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='tree.css') }}">
|
|
{% endblock %}
|
|
{% block scripts %}
|
|
<!-- Optional JavaScript -->
|
|
{{ bootstrap.load_js() }}
|
|
{% endblock %}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.min.js"></script>
|
|
<title>
|
|
{% block title %}{% endblock%}
|
|
</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<!-- Your page content -->
|
|
<div class="container">
|
|
{% block content %}{% endblock%}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|