-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathparti.html
More file actions
107 lines (95 loc) · 3.33 KB
/
parti.html
File metadata and controls
107 lines (95 loc) · 3.33 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
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Polit'IF</title>
<link rel="icon" type="image/svg+xml" href="img/logo.svg" />
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/typography.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="stylesheet" href="styles/colonnes.css" />
<link rel="stylesheet" href="styles/loading.css" />
</head>
<body>
<header>
<div class="brand">
<a href="index.html" class="logo" title="Retourner à l'accueil">
<img src="img/logo.svg" alt="" />
<h1>Polit’IF</h1>
</a>
<p class="h3">Le moteur de recherche de la politique française</p>
</div>
</header>
<main class="sheet parti colonnes" data-key="couleur">
<div class="colonne-principale">
<h2 class="nom" data-key="nom"></h2>
<div data-key="description"></div>
<br />
<div data-contains-slot="membres-importants">
<h3>Personnalités notables</h3>
<div data-key="membres-importants"></div>
</div>
<div data-contains-slot="tous-les-presidents">
<h3>Têtes du parti</h3>
<div data-key="tous-les-presidents"></div>
</div>
</div>
<div class="colonne-secondaire">
<img data-key="image-logo" src="" alt="Logo du parti">
<dl class="biographie-attributs">
<div data-contains-slot="president">
<dt>Présidé par</dt>
<dd data-key="president"></dd>
</div>
<div data-contains-slot="fondateur">
<dt>Fondé par</dt>
<dd data-key="fondateur"></dd>
</div>
<div data-contains-slot="date-creation">
<dt>Date de création</dt>
<dd data-key="date-creation"></dd>
</div>
<div data-contains-slot="date-dissolution">
<dt>Date de dissolution</dt>
<dd data-key="date-dissolution"></dd>
</div>
</dl>
<dl class="famille-attributs">
<div data-contains-slot="nombre-adherents">
<dt>Nombre d'adhérents</dt>
<dd data-key="nombre-adherents"></dd>
</div>
<div data-contains-slot="positionnement">
<dt>Positionnement politique</dt>
<dd data-key="positionnement"></dd>
</div>
<div data-contains-slot="ideologies">
<dt>Idéologie(s) politique(s)</dt>
<dd data-key="ideologies"></dd>
</div>
<div data-contains-slot="site-web">
<dt>Site web</dt>
<dd data-key="site-web"></dd>
</div>
<div data-contains-slot="siege">
<dt>Siège</dt>
<dd data-key="siege"></dd>
</div>
</dl>
</div>
</main>
<footer>
<div>
<b>Source des données :</b> <span data-key="urlwikidata"></span> sur Wikidata
</div>
<div class="drapeau-francais">
<span class="sr-only">Drapeau français</span>
</div>
</footer>
<script src="scripts/Slots.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/requetes.js"></script>
<script src="scripts/parti.js"></script>
</body>
</html>