Introduction

Just 3 lines of PHP code in the ➠ index.php file to include the default template.

<?php
    $path = $_SERVER['DOCUMENT_ROOT'];
    $path .= "/includes/template.php";
    include_once($path);
?>

template.php

menu_generator.php

fileChangedDate.php

menus.php

Other files you need to create :

content.php

header.php

title.php

sidebar1.php to sidebar3.php

And to override the default css :

customstyles.php

Picture

Click to see the structure of the demo set

download set

Download demo structure (249kB)

After download, put the content of the folder in the root of your webserver.

Feb 17 2021 05:50:49