-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplan.php
More file actions
79 lines (71 loc) · 3.63 KB
/
plan.php
File metadata and controls
79 lines (71 loc) · 3.63 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
<?php
$ext = "./";
?>
<!doctype html>
<html lang="fr">
<head>
<!--Meta-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Ajouter un train à L'Inventrain via l'espace sécurisé.">
<meta name="author" content="Léo LESIMPLE">
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#F2F2F2">
<meta name="msapplication-navbutton-color" content="#F2F2F2">
<meta name="apple-mobile-web-app-status-bar-style" content="#F2F2F2">
<link rel="apple-touch-icon" sizes="57x57" href="<?php echo $ext; ?>img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="<?php echo $ext; ?>img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="<?php echo $ext; ?>img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="<?php echo $ext; ?>img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="<?php echo $ext; ?>img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="<?php echo $ext; ?>img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="<?php echo $ext; ?>img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="<?php echo $ext; ?>img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="<?php echo $ext; ?>img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="<?php echo $ext; ?>img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="<?php echo $ext; ?>img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="<?php echo $ext; ?>img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="<?php echo $ext; ?>img/favicon/favicon-16x16.png">
<link rel="manifest" href="<?php echo $ext; ?>img/favicon/manifest.json">
<meta name="msapplication-TileImage" content="<?php echo $ext; ?>img/favicon/ms-icon-144x144.png">
<link rel="stylesheet" href="./css/app.css">
<link rel="stylesheet" href="https://leolesimple.com/toastLibrary/toast.css">
<link href="https://api.mapbox.com/mapbox-gl-js/v3.10.0/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v3.10.0/mapbox-gl.js"></script>
<title>Accueil - L'Inventrain</title>
<!--Scripts-->
<script src="https://leolesimple.com/toastLibrary/toast.js"></script>
</head>
<body>
<?php
include "./assets/includes/nav.php";
?>
<main class="noCenter">
<h1>Plan du site</h1>
<h2>Pages principales</h2>
<ul>
<li><a href="index.php">Accueil</a></li>
<li><a href="search.php">Rechercher un train</a></li>
<li><a href="detailsTrain.php">Détail du train</a></li>
<li><a href="about.php">À Propos du site</a></li>
<li><a href="plan.php">Plan du site (page actuelle)</a></li>
</ul>
<h2>Pages de documentation</h2>
<ul>
<li><a href="docs/index.php">Accueil</a></li>
<li><a href="docs/lexique.php">Lexique</a></li>
<li><a href="docs/livraisons.php">Livraisons de trains</a></li>
<li><a href="docs/add_trains.php">Ajouter un Train</a></li>
</ul>
<h2>Pages légales</h2>
<ul>
<li><a href="legal/mentions.php">Mentions Légales</a></li>
<li><a href="legal/propIntell.php">Propriété Intellectuelle</a></li>
</ul>
</main>
<?php
include "./assets/includes/footer.php";
?>
</body>
</html>