diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-09-29 15:37:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-09-29 16:39:33 +0200 |
commit | b5d7e5afa25e8ad392c81c1112a127951c88904e (patch) | |
tree | 093f726c50aafda72aac6ede8b3b7ea66da58449 | |
parent | 5005037effa18b40c701142226eb05e02fdbbcfa (diff) | |
download | guix-artwork-b5d7e5afa25e8ad392c81c1112a127951c88904e.tar guix-artwork-b5d7e5afa25e8ad392c81c1112a127951c88904e.tar.gz |
website: security: Fix layout.
* website/www/security.scm (security-page): Add 'body' and move footer
out of "content-box" div.
-rw-r--r-- | website/www/security.scm | 62 |
1 files changed, 33 insertions, 29 deletions
diff --git a/website/www/security.scm b/website/www/security.scm index efe8315..594da76 100644 --- a/website/www/security.scm +++ b/website/www/security.scm @@ -24,32 +24,36 @@ (define (security-page) `(html (@ (lang "en")) ,(html-page-header "Security") - ,(html-page-links) - (div (@ (id "content-box")) - (article - (h1 "Security") - (h2 "How to report security issues") - (p "To report sensitive security issues in Guix itself or the packages it " - "provides, you can write to the private mailing list " - (a (@ (href "https://lists.gnu.org/mailman/listinfo/guix-security")) - ("guix-security@gnu.org")) - ". This list is monitored by a small team of Guix " - "developers.") - (h2 "Release signatures") - (p "Releases of Guix and GuixSD are signed using the OpenPGP " - "key with the fingerprint " - "3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5. " - "Users should " - (a (@ (href ,(base-url "manual/html_node/Binary-Installation.html"))) - "verify") - " their downloads before extracting or running them.") - (h2 "Security updates") - (p "When security vulnerabilities are found in Guix or the " - "packages provided by Guix, we will provide " - (a (@ (href ,(base-url "manual/html_node/Security-Updates.html"))) - "security updates") - " quickly and with minimal disruption for users.") - (p "Guix uses a \"rolling release\" model. All security " - "bug-fixes are pushed directly to the master branch. There" - " is no \"stable\" branch that only receives security fixes.") - ,(html-page-footer))))) + (body + ,(html-page-description) + ,(html-page-links) + + (div (@ (id "content-box")) + (article + (h1 "Security") + (h2 "How to report security issues") + (p "To report sensitive security issues in Guix itself or the packages it " + "provides, you can write to the private mailing list " + (a (@ (href "https://lists.gnu.org/mailman/listinfo/guix-security")) + ("guix-security@gnu.org")) + ". This list is monitored by a small team of Guix " + "developers.") + (h2 "Release signatures") + (p "Releases of Guix and GuixSD are signed using the OpenPGP " + "key with the fingerprint " + "3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5. " + "Users should " + (a (@ (href ,(base-url "manual/html_node/Binary-Installation.html"))) + "verify") + " their downloads before extracting or running them.") + (h2 "Security updates") + (p "When security vulnerabilities are found in Guix or the " + "packages provided by Guix, we will provide " + (a (@ (href ,(base-url "manual/html_node/Security-Updates.html"))) + "security updates") + " quickly and with minimal disruption for users.") + (p "Guix uses a \"rolling release\" model. All security " + "bug-fixes are pushed directly to the master branch. There" + " is no \"stable\" branch that only receives security fixes."))) + + ,(html-page-footer)))) |