include-example/news.php

15 lines
178 B
PHP
Raw Permalink Normal View History

2017-04-08 15:18:36 +02:00
<?php
$currentPage = 'news.php';
$pageTitle = 'Actualités';
require __DIR__.'/elements/header.php';
?>
<p>La page d'actu</p>
<?php
require __DIR__.'/elements/footer.php';