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
flashwave e67be33619 r20150905
Signed-off-by: Flashwave <me@flash.moe>
2015-09-05 18:11:04 +02:00

16 lines
330 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('global/notfound.tpl', $renderData);