<?php include('sections/parts/head.php') ?>
<?php include('sections/parts/header.php') ?>

<?php
$page_id = $_GET['pid'] ?? 400;
$page_children_id = $_GET['ppid'] ?? 404;
include_once('sections/parts/page-header.php');
$page = Page::find_by_id($page_id);
$page_children = Page::find_by_id($page_children_id);

if (isset($_GET['ppid']) && $_GET['ppid'] == 404) {
    include('sections/about/about2.php');
} else if (isset($_GET['ppid']) && ($_GET['ppid'] == 405 || $_GET['ppid'] == 406)) {
    include('sections/about/testimonial2.php');
} else if (isset($_GET['ppid']) && $_GET['ppid'] == 434) {
    include('sections/about/first.php');
} else {
    include('sections/about/service.php');
}
?>


<?php include('sections/parts/footer.php') ?>
<?php include('sections/parts/scripts.php') ?>