<?php /** * Description (optional) * @copyright © 2005-2020 PHPBoost * @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0 * @author Firstname LASTNAME <nickname@e.mail> * @version PHPBoost 6.0 - last update: 2023 09 11 * @since PHPBoost 5.2 - 2020 03 15 */ // Define the path to the site root define('PATH_TO_ROOT', '../'); // Environment include_once(PATH_TO_ROOT.'kernel/init.php'); // Page title define('TITLE', 'Page title'); // Environment header require_once(PATH_TO_ROOT.'kernel/header.php'); // Insert php code here ?> // Insert HTML/CSS/JS here <?php // Environment footer include_once(PATH_TO_ROOT.'kernel/footer.php'); ?>