<?php
//index.php

require 'vendor/autoload.php';
$f3 = \Base::instance();

require_once('routes/index.php');
require_once('routes/admin.php');

$f3->run();

 

<?php
//routes/index.php

$f3->route('GET /', function($f3){
    require('setting.php');

    $f3->mset([
        'blogTitle'=>$setting['blogTitle'],
        'pageTitle'=>'ទំព័រ​ដើម',
        'message'=>'ស្វាគមន៍​មក​កាន់​ទំព័រ​មុខ!'
    ]);
    
    $view = new View;
    echo $view->render('views/index.php');
});

 

<!--views/header.php-->
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8"/>
        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
        <title><?php echo $blogTitle.' - '.$pageTitle ?></title>
        <script src="public/scripts/jQuery.js"></script>
        <link href="public/fonts/setup.css" rel="stylesheet" ></link>
        <link href="public/images/site_logo.png" rel="icon" ></link>
        <link href="public/styles/global.css" rel="stylesheet"></link>
        <link href="public/styles/header.css" rel="stylesheet"></link>
    </head>
    <body>
    <div class='site region'>

    <div class="Header ">
        <div class='wrapper '>
            <div class='title'><?php echo $blogTitle ?></div>
        </div>
    </div>

 

<!--views/footer.php-->

        </div><!--site-->
    </body>
</html>

 

GitHub: https://github.com/Sokhavuth/gazetta

Heroku: https://khmerweb-gazetta.herokuapp.com/