Can I avoid having two templates?
PermalinkI'm afraid I can't see any obvious way to do this. Any help most appreciated.
Thanks.

Go to 'Dashboard > Pages & Themes > Page Types' and click 'Add a Page Type'. Give it a name, a handle and the attributes you want to use.
Once the Page Type has been created you can add the default blocks to it.
Cheers, JP
<?php if ($c->getCollectionID() == HOME_CID) { $a = new Area('Home Page Header'); $a->display($c); } ?>
In elements folder in your theme folder, create header_banner.php, put the banner inside and save the file.
Now in your default.php or home.php or anywhere you want, just call the banner with this:
<?php $this->inc('elements/header_banner.php'); ?>