diff options
Diffstat (limited to 'guix-qa-frontpage')
-rw-r--r-- | guix-qa-frontpage/view/util.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/guix-qa-frontpage/view/util.scm b/guix-qa-frontpage/view/util.scm index 4479fc8..b595b6b 100644 --- a/guix-qa-frontpage/view/util.scm +++ b/guix-qa-frontpage/view/util.scm @@ -229,10 +229,15 @@ main > header { ") ,@head) (body (header - (h1 "Guix QA" - ,@(if title - `(": " ,title) - '()))) + (h1 + (img (@ (style "height: 1.4em;") + (src "/assets/img/guix.svg"))) + (span + (@ (style "position: relative; left: -0.3em;")) + "Guix QA" + ,@(if title + `(": " ,title) + '())))) ,@body)))) (define* (form-horizontal-control label query-parameters |