Adding a subfooter
parent
cc1213fa12
commit
25cabd1ccc
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue