-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathajouter_article.php
More file actions
33 lines (30 loc) · 807 Bytes
/
Copy pathajouter_article.php
File metadata and controls
33 lines (30 loc) · 807 Bytes
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
<?php include "includes/paths.php" ?>
<?php include "$includes/variables.php" ?>
<?php date_default_timezone_set('Europe/Paris'); ?>
<?php include "$includes/fonctions.php" ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Know Your Town</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php include "$includes/links.php"; ?>
</head>
<body>
<div class="row-fluid">
<div class="col-md-12">
<?php include "$includes/header.php"; ?>
</div>
</div>
<div class="container-fluid">
<?php include "$pages/ajouter_article.php"; ?>
<div class="row">
<div class="col-md-12">
<?php include "$includes/footer.php"; ?>
</div>
</div>
</div>
<?php include "$includes/background.php"; ?>
</body>
<?php include "$includes/scripts.php"; ?>
</html>