14 lines
235 B
PHP
14 lines
235 B
PHP
|
<?php define("SITE_ROOT", dirname(__FILE__)); ?>
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<?php include(SITE_ROOT . "/templates/" . "head.tpl.php"); ?>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<?php include(SITE_ROOT . "/controllers/" . "content.php"); ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|