This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/main/404.php
2015-08-24 00:08:36 +02:00

17 lines
329 B
PHP

<?php
/*
* Flashii.net Main Index
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) .'_sakura/sakura.php';
// Set 404 header
header('HTTP/1.0 404 Not Found');
// Print page contents
print Templates::render('errors/http404.tpl', $renderData);