By Robert_K on
I'm extending the zental theme on PHPTAL engine, and I'd like to disable showing the page title on the front page. I tried something like this:
<h1 tal:condition="php:!is_front()" class="title" tal:content="title" />
but it doesn't work. What is the correct way to do this?
Comments
Workaround
In case anyone else is having this problem, here's a CSS workaround:
But I'd still like to know how to do this from tal...