Core lib of filesite.io, a small PHP Framework.
https://fsc.filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
684 B
27 lines
684 B
3 years ago
|
<!DocType html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title><?php echo $pageTitle;?></title>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
|
||
|
<link href="/css/main.css?v.1.0" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
|
||
|
<?php
|
||
|
//### Render view file
|
||
|
$viewFile = __DIR__ . '/../' . FSC::$app['controller'] . '/' . $viewName . '.php';
|
||
|
include_once $viewFile;
|
||
|
?>
|
||
|
|
||
|
<div class="footer">
|
||
|
©FSCPHP 2020 - execute time: <?php echo $page_time_cost;?> ms
|
||
|
</div>
|
||
|
|
||
|
<script src="/js/js.cookie.min.js"></script>
|
||
|
<script src="/js/main.js?v.1.0"></script>
|
||
|
</body>
|
||
|
</html>
|