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

Robert_K’s picture

In case anyone else is having this problem, here's a CSS workaround:

body.front h1.title {
	display: none;
}

But I'd still like to know how to do this from tal...