diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-08-13 22:58:02 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-08-13 22:58:02 -0400 |
commit | 6bf6a7be174456290272718040071963c7ed0861 (patch) | |
tree | a536bdc665f8e62c45ae8fca2fe5543ca26ca9ec | |
parent | d2a437f447f99fc3689e2b1420dffb0eef7fb899 (diff) |
Make logo link to package list.
* guix-web/view.scm (main-layout): Wrap image tag in anchor tag.
-rw-r--r-- | guix-web/view.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix-web/view.scm b/guix-web/view.scm index c1c2941..831fc7b 100644 --- a/guix-web/view.scm +++ b/guix-web/view.scm @@ -65,7 +65,8 @@ (href "/css/guix.css")))) (body (div (@ (class "container")) - (image (@ (src "/images/logo.png"))) + (a (@ (href "/")) + (image (@ (src "/images/logo.png")))) ,@body (footer (small |