Adding a subfooter
parent
cc1213fa12
commit
25cabd1ccc
|
@ -29,9 +29,11 @@ final class Portfolio
|
||||||
$url = PORTFOLIO_URL;
|
$url = PORTFOLIO_URL;
|
||||||
$galleries = $this->loadGalleries();
|
$galleries = $this->loadGalleries();
|
||||||
$links = $this->links;
|
$links = $this->links;
|
||||||
$footer = PORTFOLIO_CREATION_YEAR .
|
$footer = PORTFOLIO_CREATION_YEAR . " - " . getdate()["year"] .
|
||||||
". " . AUTHOR_NICKNAME .
|
". " . AUTHOR_NICKNAME .
|
||||||
(AUTHOR_REALNAME !== "" ? " (" . AUTHOR_REALNAME . ")" : "");
|
(AUTHOR_REALNAME !== "" ? " (" . AUTHOR_REALNAME . ")" : "");
|
||||||
|
$has_subfooter = PORTFOLIO_SUBFOOTER !== "";
|
||||||
|
$subfooter = PORTFOLIO_SUBFOOTER;
|
||||||
include "views/index.phtml";
|
include "views/index.phtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,11 @@
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<footer><p><?=$footer?></p></footer>
|
<footer>
|
||||||
|
<p><?=$footer?></p>
|
||||||
|
<?php if ($has_subfooter): ?>
|
||||||
|
<p class="subfooter"><?=$subfooter?></p>
|
||||||
|
<?php endif; ?>
|
||||||
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue