12 lines
221 B
PHP
12 lines
221 B
PHP
<?php
|
|
|
|
require_once dirname(__FILE__).'/common.php';
|
|
$cwd = dirname(__FILE__);
|
|
|
|
$m = setup_mustache();
|
|
|
|
$tpl = $m->loadTemplate('public/not_found');
|
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
echo $tpl->render();
|