<?php
class e404
{
var $template = "index";
var $tpl;
function run()
{
$this->tpl = new tpl();
$page = $this->tpl->Parse("404");
$this->tpl->Clear();
$this->tpl->Assign("Content",$page);
$this->tpl->Assign("pageTitle","Pagina niet gevonden!");
return $this->tpl->Parse("Layout/index");
}
}
?>