diff options
author | cyfraeviolae <cyfraeviolae> | 2024-01-18 22:13:02 -0500 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2024-01-18 22:13:02 -0500 |
commit | b9456b2d24140bbe3bed2fb9dea0b2c2ec860e97 (patch) | |
tree | 73671a18add6dcd43d9cbf4d5658f1ba4d862298 | |
parent | a7b12443fbc768e128f3838d19ccc53ebde2756d (diff) |
src url
-rw-r--r-- | app/Web.hs | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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 " · "))) - (srcCrumb : crumbs) + crumbs body - where - srcCrumb = a_ [href_ "/git/sumcheck"] "source code" |