blob: fa40417e6a0dc17de09607b68ec0aa8532678305 (
plain)
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
|
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="fr" >
<head>
<meta charset="utf-8" />
<title>On aime</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<meta name="description" content="Autres sites." >
<link rel="stylesheet" href="blog.css" />
<meta name="viewport" content="width=device-width" />
<style>
.corps
{
flex-direction: column;
}
</style>
<?php include("matomo.php"); ?>
</head>
<body>
<div id="bloc_page">
<!-- photo banderole et titre -->
<header>
<h1><img class="sakura" src="sakura.png" alt="sakura" />On aime<img class="sakura" src="sakura.png" alt="sakura" /></h1>
<?php include ("menu.php"); ?>
</header>
<div class="corps" >
<div>
<a href="http://zingueurs-band.over-blog.com" >
<h2>Le Zingueur's Band</h2>
</a>
<div style="display: flex;" >
<p>la fanfare de Quimper</p>
<a href="http://zingueurs-band.over-blog.com" >
<img src="zingueurs.jpg" alt="logo zingueurs" />
</a>
</div>
</div>
<div>
<a href="https://reseaumoulinvert.fr" >
<h2>Réseau d'échanges de savoirs</h2>
</a>
<div style="display: flex;" >
<p>de la maison de quartier du moulin vert</p>
<a href="https://reseaumoulinvert.fr" >
<img src="réseau.png" alt="RERS moulin vert" />
</a>
</div>
</div>
<div>
<a href="https://ordipolo.fr" >
<h2>Ordipolo</h2>
</a>
<div style="display: flex;" >
<p>dépannage informatique</p>
<a href="https://ordipolo.fr">
<img src="minilogo.png" alt="ordipolo" />
</a>
</div>
</div>
<ul>
<li id="admin" >
<p><a href="index.php" >Retour au blog</a></p>
</li>
</ul>
</div>
</div>
</body>
</html>
|