Move <footer> tags from page to template

This commit is contained in:
Fred Boniface 2022-09-20 19:29:19 +01:00
parent af0e2ec943
commit d106168b9b
2 changed files with 1 additions and 4 deletions

View File

@ -99,10 +99,7 @@
</p> </p>
<!-- Footer --> <!-- Footer -->
<footer>
<?php include "./page-blocks/footer.php" ?> <?php include "./page-blocks/footer.php" ?>
</footer>
</body> </body>
</html> </html>

View File

@ -1,4 +1,4 @@
<?php <?php
include "./php/version.php"; include "./php/version.php";
echo "<p>Created by Fred Boniface - v$athenaVersion</p>" echo "<footer><p>Created by Fred Boniface - v$athenaVersion</p></footer>"
?> ?>