-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (99 loc) · 5.23 KB
/
index.html
File metadata and controls
99 lines (99 loc) · 5.23 KB
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
<!DOCTYPE html>
<html lang="fr" class="nojs">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Démo | JavaScript SPA</title>
<!-- Styles -->
<link href="https://demo.elodiebayet.com/neptune/assets/css/common.css" rel="stylesheet" type="text/css" media="screen">
<link href="https://demo.elodiebayet.com/neptune/assets/css/theme.css" rel="stylesheet" type="text/css" media="screen">
<link href="./assets/css/jssap.css" rel="stylesheet" type="text/css" media="screen">
<!-- Identity and parameters -->
<meta name="description" content="Exemple de développement SPA en JavaScript">
<meta name="author" content="Elodie Bayet, www.elodiebayet.com">
<meta name="copyright" content="Elodie Bayet © 2025">
<meta name="theme-color" content="#242428">
<link href="https://www.elodiebayet.com/shared/trademark/elodie_bayet_side_favicon.png" rel="icon" type="image/png">
<!-- Scripts -->
<script type="module" src="./src/main.js"></script>
</head>
<body>
<header id="uihead" class="closed">
<div class="inner">
<div class="headline">
<a href="#/" class="applogo" title="Retourner à l'accueil du site">
<span class="icon"><img src="https://www.elodiebayet.com/shared/trademark/elodie_bayet_side_icon_wt.svg" alt=""></span>
<span class="title" aria-hidden="true">JavaScript SPA</span>
</a>
<p>Exemple de développement SPA en JavaScript</p>
</div>
<div class="navigation">
<nav class="mainmenu">
<h3 class="blind">Menu principal</h3>
<ul data-component="mainmenu">
<li>
<a href="/" class="selected">Défault</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="edge"> </div>
<div class="edge"> </div>
<button type="button"><span class="blind">Ouvrir le menu</span></button>
</header>
<main>
<header>
<h1>JavaScript SPA</h1>
<p>Support de cours sur la programmation en JavaScript.</p>
<a href="https://github.com/ElodieBayet/javascript-spa" class="tab url"><span class="github"> </span>Voir le projet sur GitHub</a>
</header>
<noscript><strong>Le JavaScript n'est pas activé ::</strong> Ce projet n'est pas fonctionnel en l'état.</noscript>
<div data-component="content">
<!-- Content by default : SEO reading -->
<section>
<h2>Présentation</h2>
<p>Ce projet sert d'exemple de développement en JavaScript à travers l'architecture <strong>Single-Page-Application</strong> et le paradigme <strong>Orienté Objet</strong>.</p>
<h3>Objectifs andragogiques</h3>
<ul class="list">
<li>Résoudre un système de routage en JavaScript</li>
<li>Respecter le pattern <em>Single-Page</em></li>
<li>Exploiter les appels vers des APIs</li>
<li>Se préparer à l'utilisation du TypeScript</li>
<li>Se préprarer à l'apprentissage d'un Framework professionnel comme Angular</li>
</ul>
<h3>Exploitation</h3>
<p>Ce projet peut être utilisé dans un cadre d'apprentissage individuel et privé. Il ne convient pas pour une utilisation publique ou professionnelle.</p>
</section>
</div>
</main>
<footer id="uifoot">
<div class="headline">
<div>
<a href="#/" class="applogo" title="Retourner à l'accueil du site">
<span class="icon"><img src="https://www.elodiebayet.com/shared/trademark/elodie_bayet_side_icon_wt.svg" alt=""></span>
<span class="title" aria-hidden="true">JavaScript SPA</span>
</a>
<p>Exemple de développement SPA en JavaScript</p>
</div>
<nav class="secondmenu">
<h3 class="blind">Menu scondaire</h3>
<ul data-component="secondmenu">
<li>
<a href="/">Autre</a>
</li>
</ul>
</nav>
</div>
<div id="author">
<p>
<span>JS & SPA</span> © 2019-2025 — Tous droits réservés — v.2.0 —</span>
<a href="https://www.elodiebayet.com" title="Voir le site" target="_blank" rel="noopener">
Développé par Elodie Bayet
<img src="https://www.elodiebayet.com/shared/trademark/elodie_bayet_icon_wt.svg" alt="Icône du Logo de Elodie Bayet représentant une plume stylisée dans un cercle épais">
</a>
</p>
</div>
</footer>
</body>
</html>