Page 1 of 1

Can I hide "Home" in <title> ?

Posted: Thu Apr 03, 2008 5:45 pm
by oliver341
I'd like to stop the "Home" from appearing in for the home page, but keep the page title in the for all other pages. e.g.:

Home page
--------------
My Great Company

Contact Us
--------------
My Great Company - Contact Us

Is this possible, using some kind of "if" statement?

Re: Can I hide "Home" in <title> ?

Posted: Thu Apr 03, 2008 5:49 pm
by calguy1000
{if $page_alias == 'home'}
{sitename}
{else}
{sitename} - {title}
{/if}

Re: Can I hide "Home" in <title> ?

Posted: Thu Apr 03, 2008 5:54 pm
by oliver341
Thank you for the swift reply, works perfectly :)