summaryrefslogtreecommitdiffstats
path: root/website/haunt.scm
blob: a8b6a354efbe345b1802cde59f5ce61f25ac2b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
;;; The GNU Assembly Web Site
;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; This program is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; This program 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 General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

(use-modules (haunt asset)
             (haunt site)
             (haunt page)
             (haunt html)
             (haunt builder assets)
             (haunt reader)
             (haunt reader commonmark)
             (srfi srfi-71))

(define %cwd
  (and=> (assq-ref (current-source-location) 'filename)
         dirname))

(define (base-url . location)
  (string-concatenate (cons "" location)))

(define (image-url location)
  (base-url "/static/images" location))

(define (css-url location)
  (base-url "/static/css" location))

(define* (base-layout body #:key (title "") (meta '())
                      (posts '()) site)
  (define front-page?
    (assoc-ref meta 'frontpage))

  `((doctype "html")
    (html (@ (lang "en"))
          (head
           (meta (@ (http-equiv "Content-Type")
                    (content "text/html; charset=utf-8")))
           (link (@ (rel "icon")
                    (type "image/x-icon")
                    (href ,(image-url "/favicon.svg"))))
           (link (@ (rel "stylesheet")
                    (href ,(css-url "/main.css"))
                    (type "text/css")
                    (media "screen")))
           (title ,title))
          (body
           (div (@ (id "header")
                   ,@(if front-page?
                         '((class "frontpage"))
                         '()))
                (div (@ (id "header-inner")
                        (class "width-control"))
                     (a (@ (href ,(base-url "/")))
                        (img (@ (class ,(if front-page?
                                            "logo" "logo small"))
                                (alt "The logo of the GNU Assembly")
                                (src ,(image-url (if front-page?
                                                     "/logo.svg"
                                                     "/logo-small.svg"))))))

                     ;; Add the large-font welcoming message on the
                     ;; front page.
                     ,@(if (assoc-ref meta 'frontpage)
                           `((p (@ (id "heading")
                                   (class "front-page-heading"))
                                "Welcome to the GNU Assembly!  We write "
                                (a (@ (href "/en/documents/free-software"))
                                   (emph "free software"))
                                " — software that empowers users, "
                                "giving them individual and collective control "
                                "over their computing, from the operating "
                                "system to applications."))
                           '())))
           (div (@ (id "menubar")
                   (class "width-control"))
                (ul
                 (li (a (@ (href ,(base-url "/")))
                        "About"))
                 (li (a (@ (href ,(base-url "/software")))
                        "Software"))
                 (li (a (@ (href ,(base-url "/blog")))
                        "Blog"))
                 (li (a (@ (href ,(base-url "/blog/feed.xml")))
                        (img (@ (alt "Atom feed")
                                (src ,(image-url "/feed.png"))))))))

           (div (@ (id "content")
                   (class "width-control"))
                (div (@ (id "content-inner"))
                     (article ,body)))

           (div (@ (id "footer-box")
                   (class "width-control"))
                (p (a (@ (href "https://wiki.gnu.tools/git/")) ;FIXME
                      "Source of this site")))))))

(define read-markdown
  (reader-proc commonmark-reader))

(define (read-markdown-page file posts site)
  "Read the CommonMark page from FILE.  Return its final SXML
representation."
  (let ((meta body (read-markdown (string-append %cwd "/" file))))
    (base-layout `(div (@ (class "post"))
                       (div (@ (class "post-body"))

                            
                            ,body))
                 #:title (string-append "The GNU Assembly — "
                                        (assoc-ref meta 'title))
                 #:meta meta
                 #:posts posts
                 #:site site)))

(define (static-pages)
  "Return the list of static web pages."
  (define (markdown-page html md)
    (lambda (site posts)
      (make-page html (read-markdown-page md posts site)
                 sxml->html)))

  (list (markdown-page "index.html" "index.md")

        (markdown-page "/software/index.html"
                       "software.md")
        (markdown-page "/en/documents/free-software/index.html"
                       "free-software.md")
        (markdown-page "/en/documents/code-of-conduct/index.html"
                       "code-of-conduct.md")
        (markdown-page "/en/documents/social-contract/index.html"
                       "social-contract.md")))


(site #:title "The GNU Assembly"
      #:domain "gnu.tools"
      #:default-metadata
      '((author . "The GNU Assembly")
        (email  . "assembly@lists.gnu.tools"))
      #:readers (list commonmark-reader)
      #:builders (cons (static-directory "static")
                       (static-pages)))