diff options
author | 2025-02-20 18:29:22 +0100 | |
---|---|---|
committer | 2025-02-20 18:35:50 +0100 | |
commit | 6a75e3db9f30ba8856dda185b012a48cea2d7d6f (patch) | |
tree | 9e1546d43f1bbf82704d306d4b5268ee94782dfa | |
parent | 69bd88efdabf9362d2218618a5b0786543961cb3 (diff) |
link commitsmain
-rw-r--r-- | app/Main.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index a31a84b..06d75cd 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -172,6 +172,9 @@ css = .commit border: 1px solid black padding: 2px 4px + a.commit + color: black + text-decoration: none .commit__title font-weight: bold .commit__meta @@ -202,7 +205,7 @@ instance ToMarkup (Day, [Commit]) where instance ToMarkup Commit where toMarkup Commit {..} = [shamlet| - <div .commit> + <a .commit href=https://code.nomath.org/#{repository}/commit/?id=#{hash}> <div .commit__title> <span>#{repository}: <span>#{fst message} |