diff options
author | Adam T. Carpenter <atc@53hor.net> | 2023-05-09 21:24:53 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2023-05-09 21:24:53 -0400 |
commit | e0bce1a7ae048d75ff74cc99af4d0b446a03710e (patch) | |
tree | 0babbef5ddeb7622b53c0e65827a6278a95c61f9 /includes/foot.php | |
parent | a830f959ed0449032d1c67a68da3619b004333d8 (diff) | |
download | 53hor-e0bce1a7ae048d75ff74cc99af4d0b446a03710e.tar.xz 53hor-e0bce1a7ae048d75ff74cc99af4d0b446a03710e.zip |
feat: simplify with bottom nav
Inspired by https://bt.ht/
Diffstat (limited to 'includes/foot.php')
-rw-r--r-- | includes/foot.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/foot.php b/includes/foot.php index 4812bb8..2d8576e 100644 --- a/includes/foot.php +++ b/includes/foot.php @@ -2,12 +2,16 @@ <hr /> <footer> + <?php include('nav.php'); ?> <p> © 2019-<?php printf('%s', date('Y')); ?> Adam Carpenter <br> Content licensed under the <a target="_blank" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. <br> Source code licensed under the <a target="_blank" href="https://opensource.org/licenses/BSD-3-Clause"> BSD 3-Clause license</a>, unless otherwise stated. + <noscript> + JavaScript? Where we're going we don't need JavaScript. + </noscript> </p> </footer> |