summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2024-01-18 22:13:02 -0500
committercyfraeviolae <cyfraeviolae>2024-01-18 22:13:02 -0500
commitb9456b2d24140bbe3bed2fb9dea0b2c2ec860e97 (patch)
tree73671a18add6dcd43d9cbf4d5658f1ba4d862298 /app
parenta7b12443fbc768e128f3838d19ccc53ebde2756d (diff)
src url
Diffstat (limited to 'app')
-rw-r--r--app/Web.hs7
1 files changed, 3 insertions, 4 deletions
diff --git a/app/Web.hs b/app/Web.hs
index 8dad484..10abefa 100644
--- a/app/Web.hs
+++ b/app/Web.hs
@@ -224,10 +224,9 @@ pageTemplate crumbs body = doctypehtml_ $ do
div_ [class_ "home"] $ do
a_ [href_ (homeURI Nothing), class_ "home-title"] (strong_ "Sumcheck")
span_ " at "
- a_ [href_ "/"] "cyfraeviolae.org"
+ a_ [class_ "site", href_ "/"] "cyfraeviolae.org"
+ a_ [class_ "source", href_ "/git/sumcheck"] "[src]"
div_ [class_ "crumbs"] $ sequence_ $ L.intersperse
(span_ [class_ "sep"] (toHtmlRaw (T.pack " &middot; ")))
- (srcCrumb : crumbs)
+ crumbs
body
- where
- srcCrumb = a_ [href_ "/git/sumcheck"] "source code"