-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnecro.php
More file actions
116 lines (114 loc) · 4.35 KB
/
necro.php
File metadata and controls
116 lines (114 loc) · 4.35 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
108
109
110
111
112
113
114
115
116
<?php
include_once './templates/HTML/header.html';
?>
<main class="start-page">
<div class="grid-presentation">
<h1>Nécrologie des membres de l'association</h1>
</div>
<article class="grid grid-presentation">
<h2 class="title-presentation">2022</h2>
<ul>
<li>
LAGIER Bernadette, le 18 décembre 2022 (adhérente) ;
</li>
<li>
RENAUD Guy, décembre 2022 (82ans - AFN) ;
</li>
<li>
MARSALLON Robert, le 01 novembre 2022 (85ans et porte-drapeau) ;
</li>
<li>
AUGUSTYNIAK Georges, juillet 2022 (88 ans - AFN) ;
</li>
<li>
THIVEL Jacques, le 09 juin 2022 (62 ans - Soldat de France) ;
</li>
<li>
JUILLET Guy, le 19 mars 2022 (85 ans - AFN) ;
</li>
<li>
DONATI Claude, le 26 février 2022 (82 ans - OPEX).
</li>
</ul>
</article>
<article class="grid grid-presentation">
<h2 class="title-presentation">2021</h2>
<ul>
<li>
BORTOLUZZI-CLERC Géraldine, le 03 septembre 2021 (43ans - OPEX et Présidente UNC CREUSE) ; </li>
<li>
MAREIX Daniel, le 22 juin 2021 (82 ans - AFN) ;
</li>
<li>
FAYADAS Jean, le 11 février 2021 (88 ans - AFN).
</li>
</ul>
</article>
<article class="grid grid-presentation">
<h2 class="title-presentation">2020</h2>
<ul>
<li>
DEBAYLE Jean, novembre 2020 (AFN) ;
</li>
<li>
LURET Bernard, le 30 septembre 2020 (AFN) ;
</li>
<li>
BARRE Jean, le 06 août 2020 (86ans - AFN) ;
</li>
<li>
VASSELIN Gilbert, le 18 mars 2020 (OPEX, Maître Principal de la Marine Nationale) ;
</li>
<li>
JOLY Robert, le 10 février 2020. (AFN).
</li>
</ul>
</article>
<article class="grid grid-presentation">
<h2 class="title-presentation">2019</h2>
<ul>
<li>
BOUSTON Jean, le 28 décembre 2019 ; </li>
<li>
LAMARDELLE René, le 12 décembre 2019 ; </li>
<li>
DEMARLY Gérard, le 25 septembre 2019 (Officier superieur de l'Armée de Terre) ; </li>
<li>
CAILLOT Maurice, le 12 février 2019 ; </li>
<li>
LE VAN HAO Abert, le 26 janvier 2019. </li>
</ul>
</article>
<article class="grid grid-presentation">
<h2 class="title-presentation">2018</h2>
<ul>
<li>
LACHAUMETTE Jean-Claude, le 22 novembre 2018 ;
</li>
<li>
LAGIER Pierre, le 28 juin 2018 ;
</li>
<li>
MARSALLON Marcel, le 29 avril 2018. </li>
</ul>
</article>
<article class="grid grid-presentation">
<h2 class="title-presentation">2017</h2>
<ul>
<li>
VILLELEGER Adrien, le 10 octobre 2017 ;
</li>
<li>
GUILLOT Gaston, le 24 janvier 2017.
</li>
</ul>
</article>
</main>
<footer class="footer footer-page">
<?php
include_once './templates/HTML/footer.html'
?>
</footer>
</div>
</body>
</html>