11 lines
314 B
PHP
11 lines
314 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
$this->layout('layout/main', [ 'resourceEntry' => 'index' ]);
|
|
|
|
/**
|
|
* @var int $errorCode
|
|
*/
|
|
?>
|
|
|
|
<img src="https://http.dog/<?= $errorCode ?>.jpg" alt="Error <?= $errorCode ?>" class="position-absolute top-50 start-50 translate-middle w-100" style="max-width: 800px" />
|