;;; GuixSD website --- GNU's advanced distro website ;;; Copyright © 2015, 2016, 2017 Ludovic Courtès ;;; Copyright © 2015 Mathieu Lirzin ;;; Initially written by Luis Felipe López Acevedo ;;; who waives all copyright interest on this file. ;;; ;;; This file is part of GuixSD website. ;;; ;;; GuixSD website is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU Affero General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GuixSD website is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU Affero General Public License for more details. ;;; ;;; You should have received a copy of the GNU Affero General Public License ;;; along with GuixSD website. If not, see . (define-module (www shared) #:use-module (www utils) #:export (latest-guix-version html-page-header html-page-description html-page-links html-page-footer)) (define latest-guix-version (make-parameter "0.12.0")) (define* (html-page-header title #:key (css "article.css") js) `(head (meta (@ (charset "utf-8"))) (meta (@ (name "author") (content "GuixSD Contributors"))) (meta (@ (name "description") (content "GuixSD is GNU's advanced system distribution. GNU is an operating system which respects the freedom of computer users. You are free to run the system for any purpose, study how it works, improve it, and share it with the whole world."))) (meta (@ (name "keywords") (content "GNU, FSF, Free Software Foundation, Linux, Emacs, GCC, Unix, Free Software, Libre Software, Operating System, GNU Kernel, GNU Hurd, Guix Package Manager, Guile Scheme, Transactional upgrades, Functional package management,"))) (meta (@ (name "viewport") (content "width=device-width, initial-scale=1.0"))) (link (@ (type "text/css") (rel "stylesheet") (href ,(css-url "base.css")))) (link (@ (type "text/css") (rel "stylesheet") (href ,(css-url css)))) (link (@ (type "image/png") (rel "icon") (href ,(image-url "favicon.png")))) (link (@ (rel "license") (href "Pending..."))) (title ,(string-append title " — GuixSD")) ,(if js `(script (@ (src ,(js-url js))) "") ""))) (define (html-page-description) `(div ;; (div (@ (class "message-box donate-info")) ;; (span (@ (class "msg-label")) "Donate ") ;; "For Guix to grow we need to upgrade our hardware. Please consider " ;; (a (@ (href "https://my.fsf.org/civicrm/contribute/transact?reset=1&id=50") ;; (class "donate-button")) "donating") "!") )) (define (html-page-links) `(div (@ (id "header-box")) (a (@ (id "logo") (href ,(base-url ""))) (img (@ (src ,(image-url "GuixSD-logo.png")) (alt "GuixSD")))) (ul (@ (id "site-nav")) (li (a (@ (href ,(base-url "download"))) "Download")) ;; Note: valid only if `packages-page' is exported. (li (a (@ (href ,(base-url "packages"))) "Packages")) (li (a (@ (href ,(base-url "help"))) "Help")) (li (a (@ (href ,(base-url "security"))) "Security")) (li (a (@ (href ,(base-url "contribute"))) "Contribute")) (li (a (@ (href ,(base-url "donate"))) "Donate")) (li (a (@ (href ,(base-url "about"))) "About"))))) (define (html-page-footer) `(div (@ (id "footer-box")) "Made with " (span (@ (class "metta")) "♥") " by humans and powered by " (a (@ (href ,(gnu-url "software/guile")) (class "hlink-yellow")) "GNU Guile") ". " (a (@ (href "//git.savannah.gnu.org/cgit/guix/guix-artwork.git/tree/website") (class "hlink-yellow")) "Source code") " under the " (a (@ (href ,(gnu-url "licenses/agpl-3.0.html")) (class "hlink-yellow")) "GNU AGPL") "."))