-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
base.html
48 lines (39 loc) · 2.03 KB
/
base.html
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
37
38
39
40
41
42
43
44
45
46
47
48
{% load i18n %}
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{% trans "Appointment application" %}{% endblock %}</title>
<meta name="description" content="{% block description %}Chosing a date page to take an appointment.{% endblock %}">
<meta name="keywords" content="{% block keyword %}appointment, adams pierre david{% endblock %}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="{% block author %}Adams Pierre David{% endblock %}">
{% block customMetaTag %}{% endblock %}
<!-- Stylesheets -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- Custom CSS-->
{% block customCSS %}{% endblock %}
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap"
rel="stylesheet">
{% block scriptHead %}{% endblock %}
</head>
<body>
{% block body %}
{% endblock %}
<!--====== Javascript & Jquery ======-->
<!-- Ion Icons -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.min.js"
integrity="sha512-WW8/jxkELe2CAiE4LvQfwm1rajOS8PHasCCx+knHG0gBHt8EXxS6T6tJRTGuDQVnluuAvMxWF4j8SNFDKceLFg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
{% block customJS %}{% endblock %}
<!--end footer-->
</body>
</html>