Files
breadcrumb-the-shire/templates/partials/app-footer.phtml

25 lines
658 B
PHTML
Raw Normal View History

2026-02-04 23:31:53 +01:00
<footer class="site-footer">
2026-03-06 00:44:52 +01:00
<nav aria-label="<?php e(t('Footer navigation')); ?>">
2026-02-04 23:31:53 +01:00
<ul>
2026-02-11 19:28:12 +01:00
<li>
<a href="<?php e(lurl('')); ?>">
2026-02-04 23:31:53 +01:00
<span class="muted">©
2026-02-11 19:28:12 +01:00
<?php e(date('Y')); ?> <?php e(appTitle()); ?>
2026-02-04 23:31:53 +01:00
</span>
</a>
</li>
2026-02-11 19:28:12 +01:00
<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>
2026-02-04 23:31:53 +01:00
</ul>
<ul>
<li>
<?php
$variant = 'select';
require __DIR__ . '/app-language-switcher.phtml';
unset($variant);
?>
</li>
</ul>
</nav>
</footer>