Files
breadcrumb-the-shire/templates/error.phtml

14 lines
184 B
PHTML
Raw Normal View History

2026-02-04 23:31:53 +01:00
<?php
use MintyPHP\Buffer;
Buffer::start('html');
?>
<p style="color:red;">ERROR: <?php Buffer::get('html'); ?></p>
<?php
Buffer::end('html');
require __DIR__ . '/default.phtml';