lookyloo/website/web/templates/main.html

50 lines
1.7 KiB
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">
2021-06-17 02:36:01 +02:00
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"
integrity="{{get_sri('static', 'favicon.ico')}}"
crossorigin="anonymous">
2017-07-23 19:56:51 +02:00
2019-04-18 17:34:36 +02:00
{% block styles %}
<!-- Bootstrap CSS -->
{{ bootstrap.load_css() }}
2021-06-17 02:36:01 +02:00
<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">
2019-04-18 17:34:36 +02:00
{% endblock %}
2021-05-11 19:52:55 +02:00
2021-01-17 12:41:01 +01:00
<title>{% block title %}{% endblock%}</title>
{% block card %}{% endblock %}
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
2020-11-26 22:26:22 +01:00
{% 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>
2021-06-17 02:36:01 +02:00
<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>
2020-11-26 22:26:22 +01:00
{% endblock %}
2019-04-18 17:34:36 +02:00
</body>
</html>