attogram/attogram

View on GitHub
templates/404.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
// Attogram Framework - 404 Page Template v0.1.1

header('HTTP/1.0 404 Not Found');

$title = '😕 404 Not Found';

$this->pageHeader($title);

echo '<div class="container"><h1>'.$title.'</h1>';

if (isset($error) && $error) {
    echo '<h2>💔 <code>'.$this->webDisplay($error).'</code></h2>';
}

echo '</div>';

$this->pageFooter();