mirror of https://github.com/CIRCL/lookyloo
50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
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') }}"
|
|
integrity="{{get_sri('static', 'favicon.ico')}}"
|
|
crossorigin="anonymous">
|
|
|
|
{% block styles %}
|
|
<!-- Bootstrap CSS -->
|
|
{{ bootstrap.load_css() }}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='generic.css') }}"
|
|
integrity="{{get_sri('static', 'generic.css')}}"
|
|
crossorigin="anonymous">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='datatables.min.css') }}"
|
|
integrity="{{get_sri('static', 'datatables.min.css')}}"
|
|
crossorigin="anonymous">
|
|
{% endblock %}
|
|
|
|
<title>{% block title %}{% endblock%}</title>
|
|
|
|
{% block card %}{% endblock %}
|
|
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<!-- Your page content -->
|
|
<div class="container">
|
|
{% block content %}{% endblock%}
|
|
</div>
|
|
|
|
{% block scripts %}
|
|
<!-- Optional JavaScript -->
|
|
{{ bootstrap.load_js() }}
|
|
<script src='{{ url_for('static', filename='jquery.min.js') }}'
|
|
integrity="{{get_sri('static', 'jquery.min.js')}}"
|
|
crossorigin="anonymous"></script>
|
|
<script src='{{ url_for('static', filename='datatables.min.js') }}'
|
|
integrity="{{get_sri('static', 'datatables.min.js')}}"
|
|
crossorigin="anonymous"></script>
|
|
<script src='{{ url_for('static', filename='generic.js') }}'
|
|
integrity="{{get_sri('static', 'generic.js')}}"
|
|
crossorigin="anonymous"></script>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|