summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--assets/css/screen.css13
-rw-r--r--mumi/web/view/html.scm9
2 files changed, 21 insertions, 1 deletions
diff --git a/assets/css/screen.css b/assets/css/screen.css
index 2e52ae4..046b908 100644
--- a/assets/css/screen.css
+++ b/assets/css/screen.css
@@ -129,6 +129,19 @@ tr.important td:nth-child(1) {
width: 500px;
}
+footer {
+ border-color: #1A1A1A1A;
+ border-style: dashed none none none;
+ border-width: 2px;
+ width: 100%;
+ align-items: center;
+ text-align: center;
+ margin-top: 3rem;
+ padding: 1rem;
+ color: #586069;
+ background: #fafafa;
+}
+
table {
width: 100%;
}
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm
index 1ba3c90..be73994 100644
--- a/mumi/web/view/html.scm
+++ b/mumi/web/view/html.scm
@@ -76,7 +76,14 @@
(media "screen")
(type "text/css")
(href "/css/code.css"))))
- (body ,@body)))
+ (body ,@body
+ (footer
+ (p "Copyright © 2016—2019 by the GNU Guix community."
+ (br)
+ "Now with even more " (span (@ (class "lambda")) "λ") "! ")
+ (p "This is free software. Download the "
+ (a (@ (href "https://git.elephly.net/projects/mumi.git"))
+ "source code here") ".")))))
#:extra-headers ,extra-headers))
(define* (search-form #:key (standalone? #f))