vf
This commit is contained in:
parent
b657b64c44
commit
a2ae207bb0
|
|
@ -25,28 +25,41 @@
|
|||
$imgData = $_SESSION['photoAssureCrypte'];
|
||||
?>
|
||||
|
||||
<?php
|
||||
// On définit le chemin du dossier includes par rapport au fichier actuel
|
||||
$inc_path = __DIR__ . '/includes/';
|
||||
|
||||
include($inc_path . 'head-meta.php');
|
||||
include($inc_path . 'header.php');
|
||||
include($inc_path . 'sidebar.php');
|
||||
include($inc_path . 'main-navigation.php');
|
||||
include($inc_path . 'barre-contexte.php');
|
||||
include($inc_path . 'modals.php');
|
||||
include($inc_path . 'scripts-footer.php');
|
||||
?>
|
||||
|
||||
<!doctype html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<?php include('/includes/head-meta.php'); ?>
|
||||
<?php include('includes/head-meta.php'); ?>
|
||||
</head>
|
||||
|
||||
<body class="<?= ($_SESSION['bdTests_C'] == '1') ? 'mode-test-active' : '' ?>">
|
||||
|
||||
<?php include('/includes/header.php'); ?>
|
||||
<?php include('/includes/sidebar.php'); ?>
|
||||
<?php include('includes/header.php'); ?>
|
||||
<?php include('includes/sidebar.php'); ?>
|
||||
|
||||
<main id="main">
|
||||
<?php include('/includes/main-navigation.php'); ?>
|
||||
<?php include('includes/main-navigation.php'); ?>
|
||||
|
||||
<div class="page-content">
|
||||
<?php $contenu ?>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<?php include('/includes/barre-contexte.php'); ?>
|
||||
<?php include('/includes/modals.php'); ?>
|
||||
<?php include('/includes/scripts-footer.php'); ?>
|
||||
<?php include('includes/barre-contexte.php'); ?>
|
||||
<?php include('includes/modals.php'); ?>
|
||||
<?php include('includes/scripts-footer.php'); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue
Block a user