-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
125 lines (122 loc) · 3.75 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-9QRP2YVYMP"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-9QRP2YVYMP");
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Accueil - ADE Redesign</title>
<meta
name="description"
content="Nouvelle interface de visualisation des emplois du temps d'ADE."
/>
<meta property="og:title" content="Accueil" />
<meta
property="og:description"
content="ADE Redesign est un projet proposant une nouvelle interface de visualisation d'emplois du temps."
/>
<meta property="og:site_name" content="ADE Redesign" />
<meta property="og:url" content="https://ade-edt.fr" />
<meta property="og:image" content="/assets/cover.png" />
<link
rel="icon"
href="/assets/favicons/logo-192.png"
sizes="192x192"
type="image/png"
/>
<link
rel="icon"
href="/assets/favicons/logo-512.png"
sizes="512x512"
type="image/png"
/>
<link
rel="apple-touch-icon"
href="/assets/favicons/logo-180.png"
sizes="180x180"
/>
<link rel="icon" href="/assets/favicons/logo.svg" type="image/svg+xml" />
<link rel="stylesheet" href="/font.css" />
<link rel="stylesheet" href="/style.css" />
</head>
<body class="mode lightMode">
<header>
<a href="/">
<img id="logo" src="/assets/logo/logo.svg" alt="Logo ADE Redesign"
/></a>
<img
id="switchDarkLightMode"
src="/assets/switchDarkLightMode/lightMode.svg"
alt="Switch Dark/Light Mode"
/>
</header>
<main>
<section id="titles">
<h1>ADE Redesign</h1>
<h2>
Votre emploi du temps universitaire avec une toute nouvelle
interface !
</h2>
<h3>
Plus lisible, moderne et fonctionnel, ADE Redesign vous offre la
possibilité de consulter vos emplois du temps facilement sur toutes
les plateformes.
</h3>
</section>
<section id="schoolLinks">
<a href="https://iutv.ade-edt.fr" target="_blank">
<button class="schoolLink CTA buttonMode lightModeButton">
IUT de Valence
<img
src="/assets/icons/externalLinkDark.svg"
alt="External Link Icon"
class="icon"
/>
</button>
</a>
</section>
<a href="about.html#addTimetable" class="blueLink"
>Ajouter mon emploi du temps</a
>
</main>
<footer>
<section id="legalLinks">
<a href="/cgu.html">CGU</a>
<p>–</p>
<a href="/mentions-legales.html">Mentions Légales</a>
<p>–</p>
<a href="/politique-confidentialite.html"
>Politique de Confidentialité</a
>
<p>–</p>
<a href="mailto:[email protected]">Contact</a>
</section>
<section id="copyright">
©
<span id="copyrightDate">2024</span> – ADE
Redesign – Tous droits réservés.
</section>
</footer>
<div id="plus">
<a href="/about.html" id="plusLink">
<p id="plusText" class="plusTextLight">En savoir plus</p>
<p id="plusIcon" class="plusIconLight">?</p>
</a>
</div>
<script src="/script.js"></script>
<script src="/pageInit.js"></script>
<script src="/mode.js"></script>
<script src="/events.js"></script>
</body>
</html>