-
Notifications
You must be signed in to change notification settings - Fork 0
/
GDPR
37 lines (36 loc) · 1.65 KB
/
GDPR
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!-- templates/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Audiimpact.it</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/carousel.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/slider.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/cookieconsent.css') }}">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
{% include 'carousels/carousel.html' %}
{% include 'sliders/slider.html' %}
<div id="cookieConsent">
<div class="cookieConsentContainer" id="cookieConsentContainer">
<div class="cookieTitle">
<a>Cookies.</a>
</div>
<div class="cookieDesc">
<p>We use cookies to ensure you get the best experience on our website.</p>
</div>
<div class="cookieButton">
<a onClick="acceptCookies();">Accept</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="{{ url_for('static', filename='js/carousel.js') }}"></script>
<script src="{{ url_for('static', filename='js/slider.js') }}"></script>
<script src="{{ url_for('static', filename='js/cookieconsent.js') }}"></script>
</body>
</html>