I want to display some html code in template, on all pages except frontpage.
I placed this code to /gk_university/layouts/blocks/logo.php
- Code: Select all
<?php if(!$this->layout->isFrontpage()){?>
<small>My custom html code</small><?php
}?>
</a>
But now I get error
Fatal error: Call to a member function isFrontpage() on null in /Applications/MAMP/htdocs/mysite/templates/gk_university/layouts/blocks/logo.php on line 65
How to fix it?
Thanks.