diff options
author | 53hornet <atc@53hor.net> | 2021-12-22 20:56:32 -0500 |
---|---|---|
committer | 53hornet <atc@53hor.net> | 2021-12-22 20:56:32 -0500 |
commit | c4132486acea24c75e6ed0e74eb329d879990c17 (patch) | |
tree | 937aa318e30965c1c1e18ded9ceca4651faf6d87 /includes | |
parent | c2e4e4f87fe9a7c2bbce31ac670aaa43c1ae0022 (diff) | |
download | 53hor-c4132486acea24c75e6ed0e74eb329d879990c17.tar.xz 53hor-c4132486acea24c75e6ed0e74eb329d879990c17.zip |
feat: licenses in footer, footnotes on rescue
Diffstat (limited to 'includes')
-rw-r--r-- | includes/foot.php | 11 | ||||
-rw-r--r-- | includes/style.css | 1 |
2 files changed, 11 insertions, 1 deletions
diff --git a/includes/foot.php b/includes/foot.php index 750a22a..d3754d6 100644 --- a/includes/foot.php +++ b/includes/foot.php @@ -2,8 +2,17 @@ <hr /> <footer> - If you like my work then <a href="/donate">you may donate here</a>. + <p> + Content licensed under the <a target="_blank" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. + Source code licensed under the <a target="_blank" href="https://opensource.org/licenses/BSD-3-Clause"> BSD 3-Clause license</a>, unless otherwise stated. + </p> + + <p> + If you like my work then <a href="/donate">you may donate here</a>. + </p> + </footer> + </body> </html> diff --git a/includes/style.css b/includes/style.css index 3213b99..c8d9a33 100644 --- a/includes/style.css +++ b/includes/style.css @@ -196,5 +196,6 @@ th { } footer { + font-size: 0.75em; text-align: center; } |