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/public/404.php

17 lines
331 B
PHP
Raw Normal View History

2015-04-02 13:41:05 +00:00
<?php
/*
* Flashii.net Main Index
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) . '_sakura/sakura.php';
2015-04-02 13:41:05 +00:00
2015-08-23 22:08:36 +00:00
// Set 404 header
header('HTTP/1.0 404 Not Found');
2015-04-02 13:41:05 +00:00
// Print page contents
print Templates::render('global/notfound.tpl', $renderData);