Files
breadcrumb-the-shire/templates/partials/app-footer.phtml
2026-03-06 00:44:52 +01:00

25 lines
658 B
PHTML

<footer class="site-footer">
<nav aria-label="<?php e(t('Footer navigation')); ?>">
<ul>
<li>
<a href="<?php e(lurl('')); ?>">
<span class="muted">©
<?php e(date('Y')); ?> <?php e(appTitle()); ?>
</span>
</a>
</li>
<li><a href="<?php e(lurl('imprint')); ?>"><?php e(t('Imprint')); ?></a></li>
<li><a href="<?php e(lurl('privacy')); ?>"><?php e(t('Privacy')); ?></a></li>
</ul>
<ul>
<li>
<?php
$variant = 'select';
require __DIR__ . '/app-language-switcher.phtml';
unset($variant);
?>
</li>
</ul>
</nav>
</footer>