blob: ef1ed4f90ffa47228423bf289f3586bdf1f94a0b (
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
|
(define-module (guix-qa-frontpage view home)
#:use-module (guix-qa-frontpage view util)
#:export (home))
(define (home)
(layout
#:description "Guix Quality Assurance"
#:body
`((main
(p
(@ (style "text-align: center; padding: 2rem; border: 0.3rem dashed red;"))
"This service is in the very early stages of development. "
(br)
"Find the code in "
(a (@ (href "https://git.cbaines.net/guix/qa-frontpage/"))
"this git repository")
" and send patches to "
(a (@ (href "mailto:mail@cbaines.net"))
"mail@cbaines.net")
".")
;; (div (@ (class "row"))
;; (section
;; (h2 "branch: master")))
;; (h2 "Branches")
;; (div
;; (@ (class "row two-element-row"))
;; (section
;; (h3 "branch: staging"))
;; (section
;; (h3 "branch: staging")))
(h2 "Patches")
(a (@ (href "/patches"))
"List of issues for patches")
;; (div
;; (@ (class "row two-element-row"))
;; (section
;; (h3 "Checks passing"))
;; (section
;; (h3 "Unreviewed")))
))))
|