mirror of
https://github.com/Karaka-Management/oms-QA.git
synced 2026-02-09 20:48:41 +00:00
15 lines
408 B
PHP
Executable File
15 lines
408 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
|
|
use phpOMS\Uri\UriFactory;
|
|
|
|
?>
|
|
<footer>
|
|
<div class="floater">
|
|
<hr>
|
|
<ul>
|
|
<li><a href="<?= UriFactory::build('{/app}/terms'); ?>">Terms</a>
|
|
<li><a href="<?= UriFactory::build('{/app}/privacy'); ?>">Data Protection</a>
|
|
<li><a href="<?= UriFactory::build('{/app}/imprint'); ?>">Imprint</a>
|
|
</ul>
|
|
</div>
|
|
</footer>
|