]> git.p6c8.net - jirafeau.git/blob - lib/template/footer.php
[BUGFIX] Remove redundant header variable
[jirafeau.git] / lib / template / footer.php
1
2 <div id="copyright">
3 <p>
4 <!-- Project links -->
5 <?php
6 echo t('Made with') .
7 ' <a href="https://gitlab.com/mojo42/Jirafeau">' . t('Jirafeau Project') . '</a>' .
8 ' (<a href="https://www.gnu.org/licenses/agpl.html"><abbr title="Affero General Public License">AGPL</abbr>v3</a>)';
9 ?>
10 <!-- Installation dependend links -->
11 <?php
12 if (false === empty($cfg['web_root']))
13 {
14 echo ' | ';
15 echo '<a href="' . $cfg['web_root'] . 'tos.php">' . t('Terms of Service') . '</a>';
16 }
17 ?>
18 </p>
19 </div>
20 </div>
21 <div id="jyraphe">
22 </div>
23 </body>
24 </html>

patrick-canterino.de