diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-04-14 17:09:18 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-14 17:10:16 +0200 |
commit | d71ba6e792257422d9df06ffcdbc148267975d50 (patch) | |
tree | d5df373f6d289cb2d068b5f99753aa95e964e188 | |
parent | software: Add Marius Bakke to Guix. (diff) |
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.
-rw-r--r-- | haunt.scm | 9 | ||||
-rw-r--r-- | static/css/main.css | 5 |
2 files changed, 10 insertions, 4 deletions
@@ -121,8 +121,13 @@ | |||
121 | 121 | ||
122 | (div (@ (id "footer-box") | 122 | (div (@ (id "footer-box") |
123 | (class "width-control")) | 123 | (class "width-control")) |
124 | (p (a (@ (href "https://wiki.gnu.tools/git/gnu-tools-website")) | 124 | (p "Unless otherwise noted, content on this site is " |
125 | "Source of this site"))))))) | 125 | "distributed under the " |
126 | (a (@ (href "https://creativecommons.org/licenses/by-sa/4.0/")) | ||
127 | "Creative Commons Attribution-ShareAlike 4.0 " | ||
128 | "International License") ". " | ||
129 | (a (@ (href "https://wiki.gnu.tools/git/gnu-tools-website")) | ||
130 | "Source of this site") ".")))))) | ||
126 | 131 | ||
127 | (define read-markdown | 132 | (define read-markdown |
128 | (reader-proc commonmark-reader)) | 133 | (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 { | |||
273 | width: 100%; | 273 | width: 100%; |
274 | margin: auto; | 274 | margin: auto; |
275 | text-align: center; | 275 | text-align: center; |
276 | color: #333333; | 276 | color: #555; |
277 | font-size: 0.8rem; | 277 | font-size: 0.8rem; |
278 | } | 278 | } |
279 | 279 | ||
280 | #footer-box p { | 280 | #footer-box p { |
281 | max-width: 100%; | 281 | max-width: 100%; |
282 | text-align: center; | 282 | text-align: center; |
283 | line-height: 1.4em; | ||
283 | } | 284 | } |
284 | 285 | ||
285 | h1 { | 286 | h1 { |
@@ -391,5 +392,5 @@ ul.members li.person + li.person { | |||
391 | margin-left: 1em; | 392 | margin-left: 1em; |
392 | } | 393 | } |
393 | 394 | ||
394 | #footer-box a { color: #333333; } | 395 | #footer-box a { color: #333333; border-width: 1px; } |
395 | #footer-box a:visited { color: #333333; } | 396 | #footer-box a:visited { color: #333333; } |