- Possibility to view the document version the consent is given to - Blocking functionality is no valid consent
22 lines
1.3 KiB
HTML
22 lines
1.3 KiB
HTML
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="apple-touch-icon" sizes="76x76" href="{{url_for('static', filename='assets/img/apple-icon.png')}}">
|
|
<link rel="icon" type="image/png" href="{{url_for('static', filename='assets/img/favicon.png')}}">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<!-- Fonts blijven via CDN (sneller) -->
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
|
|
|
<!-- Gebundelde CSS (bevat nu al je CSS) -->
|
|
<link href="{{ asset_url('dist/main.css') }}" rel="stylesheet" />
|
|
<!-- Consent viewer specific styles -->
|
|
<link href="{{ prefixed_url_for('static', filename='assets/css/eveai-consent-viewer.css') }}" rel="stylesheet" />
|
|
<base href="/admin/">
|
|
</head>
|
|
|