Example #1
0
 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details: http://www.gnu.org/licenses/
 *
 * The following people participated in this project:
 *
 * Andreas von Burg.....: Architect, Lead Developer
 * Bert Hofmänner.......: Idea, Community Leader, Marketing
 * Thomas Günther.......: Developer, Hangar
 */
use n2n\web\http\Response;
use n2n\impl\web\ui\view\html\HtmlView;
$view = HtmlView::view($this);
$html = HtmlView::html($this);
$response = HtmlView::response($this);
$httpStatus = $response->getStatus();
$title = $httpStatus . ' ' . Response::textOfStatusCode($httpStatus);
$html->meta()->addCss('css/errorpage-500-development.css');
$html->meta()->addCss('css/font-awesome.css');
?>
<!DOCTYPE html>
<html>
	<?php 
$html->headStart();
?>
		<title><?php 
$html->out($title);
?>
</title>	
	<?php 
$html->headEnd();
?>