12 lines
388 B
PHP
12 lines
388 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Footer commun à toutes les pages
|
||
|
* À inclure en fin de body
|
||
|
*/
|
||
|
?>
|
||
|
<footer class="site-footer">
|
||
|
<p class="footer-text">
|
||
|
Site propulsé grâce à <a href="https://git.crystalyx.net/camelia-studio/ICO" target="_blank" class="footer-link">ICO</a>
|
||
|
<span class="footer-version">version <?php echo htmlspecialchars(getVersion()); ?></span>
|
||
|
</p>
|
||
|
</footer>
|