I'm new to SilverStripe, so please bear with me :-)
I want to include a link in the footer.ss ONLY when the visitor is viewing the home page. I've tried various options like
<% if ClassName = HomePage %>
... my html code here ...
<% end_if %>
but it still either shows (or doesn't) on every page.
How do I show something only on the home page from WITHIN the footer? TIA!