Adding a subfooter

main
Nicolas Ong 2025-02-23 14:41:52 +01:00
parent cc1213fa12
commit 25cabd1ccc
2 changed files with 9 additions and 2 deletions

View File

@ -29,9 +29,11 @@ final class Portfolio
$url = PORTFOLIO_URL;
$galleries = $this->loadGalleries();
$links = $this->links;
$footer = PORTFOLIO_CREATION_YEAR .
$footer = PORTFOLIO_CREATION_YEAR . " - " . getdate()["year"] .
". " . AUTHOR_NICKNAME .
(AUTHOR_REALNAME !== "" ? " (" . AUTHOR_REALNAME . ")" : "");
$has_subfooter = PORTFOLIO_SUBFOOTER !== "";
$subfooter = PORTFOLIO_SUBFOOTER;
include "views/index.phtml";
}

View File

@ -35,6 +35,11 @@
<?php endforeach ?>
</ul>
</aside>
<footer><p><?=$footer?></p></footer>
<footer>
<p><?=$footer?></p>
<?php if ($has_subfooter): ?>
<p class="subfooter"><?=$subfooter?></p>
<?php endif; ?>
</footer>
</body>
</html>