I need to make a conditional whereas a certain banner appears only on the home page, but nowhere else. So, I tried:
Code: Select all
{if $node->alias == 'home'}
<div id="bannerBags"><div id="start"><a id="startBtn" title="Minimize header image" href="#">Start</a></div></div>
{else}
<div style="display: none; clear: both;"></div>
{/if}
I've also tried $node->id == '15', but to no avail.
Any idea how to fix this? Or rather, am I using the correct vars?