$page->isErrorPage()
Checks if the page is the error page
-
return (boolean)
Example
A custom css file for the error page
<?php if($page->isErrorPage()): ?>
<?= css('assets/css/error.css') ?>
<?php endif ?>
Checks if the page is the error page
<?php if($page->isErrorPage()): ?>
<?= css('assets/css/error.css') ?>
<?php endif ?>