gl-website-deployer/not_found.php
2024-11-19 08:02:04 +01:00

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();