blob: e4e72e6dc981be39bdc626f5c386c9c862b59ac2 (
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
|
;; Branding module for AGING
(define-module (web view brand aging)
#:use-module (json)
#:use-module (ice-9 match)
#:use-module (ice-9 format)
#:use-module (ice-9 iconv)
#:use-module (ice-9 receive)
#:use-module (ice-9 string-fun)
#:use-module (sxml simple)
#:use-module (web sxml)
#:export (aging-html))
(define* (aging-html #:key
(head '())
(body '())
(title "GN4AGING: GeneNetwork and Genetics for Aging")
(info "")
(meta "")
(data "")
(back "")
)
`((doctype "html")
(html (@ (lang "en"))
(head
(title ,title)
(meta (@ (charset "utf-8")))
(meta (@ (http-equiv "Content-Type") (content "text/html; charset=UTF-8")))
(meta (@ (name "author") (content "GN4AGING team (https://aging.genenetwork.org/)")))
(meta (@ (name "description") (content "The GN4AGING portal for muscuskeletal disease and model organisms")))
(meta (@ (name "viewport")
(content "width=device-width, initial-scale=1")))
; (meta (@ (http-equiv "refresh") (content "5")))
(link
(@ (rel "stylesheet")
(media "screen")
(type "text/css")
(href "/css/pico.css")
))
,@head)
(body
;; (header (p "TEST"))
(main (@ (class "container"))
(h1 ,title)
(article
(img (@ (src "/static/images/ole-farmer.jpg") (alt "ol farmer by hohumhobo is licensed under CC BY 2.0") (width "400") (align "right")))
,info)
(footer
(hr)
(p "Copyright © 2005-2023 "
(a (@ (href "https://genenetwork.org/")) "GeneNetwork Webservices") " | GeneNetwork and this website runs fully on free software. See status and download the "
(a (@ (href "https://ci.genenetwork.org/"))
"source code") ".")))
))))
|