How do you exclude the object from everything BUT the frontpage? In other words, I want the rocket image ONLY to appear on the homepage. In my case the homepage is Itemid 1 (not the frontpage component).
The following code does the opposite:
<?php if ($Itemid != "1") : ?>
<a href="http://www.allieandbri.com/" title="Allie and Bri Photography" class="nounder">
<img src="<?php echo $this->baseurl;?>/templates/<?php echo $this->template; ?>
/images/blank.gif" border="0" alt="Allie and Bri Photography" id="rocket" /></a>
<?php endif; ?>
In other words, the rocket image is on every page BUT the homepage - exactly opposite of what I want
If I take out the exclamation point from the php code, then the rocket images again appears on every page