-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfooter.php
78 lines (64 loc) · 2.27 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* Footer component
*
* This file is part of the OSIRIS package.
* Copyright (c) 2024 Julia Koblitz, OSIRIS Solutions GmbH
*
* @package OSIRIS
* @since 1.0.0
*
* @copyright Copyright (c) 2024 Julia Koblitz, OSIRIS Solutions GmbH
* @author Julia Koblitz <[email protected]>
* @license MIT
*/
?>
</div>
<footer class="page-footer">
<div class="link-parade">
<div class="row">
<div class="col">
<h3 class="title">
News & Help
</h3>
<a href="<?= ROOTPATH ?>/new-stuff" class="">
<?= lang('News', 'Neuigkeiten') ?>
</a>
<a href="<?= ROOTPATH ?>/docs" class="">
<?= lang('Documentation', 'Dokumentation') ?>
</a>
<a href="https://github.com/JKoblitz/osiris/issues" target="_blank" class="">
<?= lang('Report an issue', "Problem melden") ?>
<i class="ph ph-arrow-square-out"></i>
</a>
</div>
<div class="col">
<h3>OSIRIS v<?= OSIRIS_VERSION ?></h3>
<a href="<?= ROOTPATH ?>/about" class="">
<?= lang('About OSIRIS', 'Über OSIRIS') ?>
</a>
<a href="https://osiris-app.de" target="_blank" class="">
osiris-app.de
<i class="ph ph-arrow-square-out"></i>
</a>
<p>
<?= lang('OSIRIS is developed with', 'OSIRIS wird mit') ?> <i class="ph ph-heart" title="Für Leonie"></i> in Helmstedt<?= lang('.', ' entwickelt.') ?>
</p>
</div>
<div class="col">
<h3>Imprint</h3>
<a href="<?= ROOTPATH ?>/impress"><?= lang('Impress', 'Impressum') ?></a>
<a href="<?= ROOTPATH ?>/license"><?= lang('License', 'Lizenz') ?></a>
<p>
© OSIRIS Solutions GmbH <?=CURRENTYEAR?>
</p>
</div>
</div>
</div>
</footer>
</div>
<!-- Content wrapper end -->
</div>
<!-- Page wrapper end -->
</body>
</html>