From d71ba6e792257422d9df06ffcdbc148267975d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 14 Apr 2021 17:09:18 +0200 Subject: License under CC-BY-SA 4.0 and mention it in the footer. * haunt.scm (base-layout): Mention license in the footer. * static/css/main.css (#footer-box): Tweak. --- haunt.scm | 9 +++++++-- static/css/main.css | 5 +++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/haunt.scm b/haunt.scm index 27594b3..7171d68 100644 --- a/haunt.scm +++ b/haunt.scm @@ -121,8 +121,13 @@ (div (@ (id "footer-box") (class "width-control")) - (p (a (@ (href "https://wiki.gnu.tools/git/gnu-tools-website")) - "Source of this site"))))))) + (p "Unless otherwise noted, content on this site is " + "distributed under the " + (a (@ (href "https://creativecommons.org/licenses/by-sa/4.0/")) + "Creative Commons Attribution-ShareAlike 4.0 " + "International License") ". " + (a (@ (href "https://wiki.gnu.tools/git/gnu-tools-website")) + "Source of this site") ".")))))) (define read-markdown (reader-proc commonmark-reader)) diff --git a/static/css/main.css b/static/css/main.css index a1eddf6..c026bda 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -273,13 +273,14 @@ hr { width: 100%; margin: auto; text-align: center; - color: #333333; + color: #555; font-size: 0.8rem; } #footer-box p { max-width: 100%; text-align: center; + line-height: 1.4em; } h1 { @@ -391,5 +392,5 @@ ul.members li.person + li.person { margin-left: 1em; } -#footer-box a { color: #333333; } +#footer-box a { color: #333333; border-width: 1px; } #footer-box a:visited { color: #333333; } -- cgit v1.2.1