When I write the following code in header.tpl, it only shows on the home page and announcement page, I want it to show on all pages, can anyone help me?
{foreach $announcements as $announcement}
{if $announcement@index < 1}
<li class="nav-item">
<a class="nav-link" aria-current="page"
href="{routePath('announcement-view', $announcement.id, $announcement.urlfriendlytitle)}">
<span>{$announcement.title}</span>
</a>
</li>
{/if}
{/foreach}