diff options
-rw-r--r-- | internal/components/page.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/components/page.go b/internal/components/page.go index 6830247..06e16ae 100644 --- a/internal/components/page.go +++ b/internal/components/page.go @@ -90,7 +90,10 @@ func Page(tdata TemplateData, children ...g.Node) g.Node { g.Group([]g.Node{ g.Text("Searchix "), A( - Href("https://git.sr.ht/~alanpearce/searchix/refs/"+config.Version), + Href( + "https://git.sr.ht/~alanpearce/searchix/tree/"+config.Version+"/CHANGELOG.md", + ), + TitleAttr("View changelog"), g.Text(config.Version), ), g.Text(" "), |