mirror of
https://github.com/Karaka-Management/oms-QA.git
synced 2026-02-01 17:28:39 +00:00
27 lines
587 B
PHP
27 lines
587 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Template
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
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>
|