aboutsummaryrefslogtreecommitdiff
path: root/guix-qa-frontpage/view/home.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-08-21 17:21:28 +0100
committerChristopher Baines <mail@cbaines.net>2022-09-03 09:30:58 +0100
commit731e13d2a4dbef6b9bafc22a7bd29a77b38a6455 (patch)
tree0d4c6e69614b6a7266cc18ae6a321d8dc6deebee /guix-qa-frontpage/view/home.scm
parent42efa5c932d168aeb724727b8a564d8e89263094 (diff)
downloadqa-frontpage-731e13d2a4dbef6b9bafc22a7bd29a77b38a6455.tar
qa-frontpage-731e13d2a4dbef6b9bafc22a7bd29a77b38a6455.tar.gz
Add lots more functionality
Diffstat (limited to 'guix-qa-frontpage/view/home.scm')
-rw-r--r--guix-qa-frontpage/view/home.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/guix-qa-frontpage/view/home.scm b/guix-qa-frontpage/view/home.scm
new file mode 100644
index 0000000..4bc3f5f
--- /dev/null
+++ b/guix-qa-frontpage/view/home.scm
@@ -0,0 +1,27 @@
+(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
+ (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")
+ (div
+ (@ (class "row two-element-row"))
+ (section
+ (h3 "Checks passing"))
+ (section
+ (h3 "Unreviewed")))))))
+