1
0
Files
breadcrumb-the-shire/templates/error.phtml
2026-02-04 23:31:53 +01:00

14 lines
184 B
PHTML

<?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';