summaryrefslogtreecommitdiff
path: root/commit.go
diff options
context:
space:
mode:
authorAnton Medvedev <anton@medv.io>2025-11-30 19:42:23 +0100
committerAnton Medvedev <anton@medv.io>2025-11-30 19:42:23 +0100
commitc9c4bae4fbd29444425c2d07f66ff6b4975e9893 (patch)
tree1a7fa85afa0e07e8e380ac51f69a450fbe6a8d68 /commit.go
parent45b0f878dfe5b07f8787fd1648c3a7758f2da0de (diff)
Update the commit title format
Diffstat (limited to 'commit.go')
-rw-r--r--commit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.go b/commit.go
index e5621a7..2091592 100644
--- a/commit.go
+++ b/commit.go
@@ -231,7 +231,7 @@ func generateCommitPage(commit git.Commit, params Params) error {
err = templates.CommitTemplate.ExecuteTemplate(f, "layout.gohtml", templates.CommitParams{
LayoutParams: templates.LayoutParams{
- Title: fmt.Sprintf("%s — %s", params.Name, commit.ShortHash),
+ Title: fmt.Sprintf("%s %s %s@%s", commit.Subject, dot, params.Name, commit.ShortHash),
Name: params.Name,
Dark: params.Dark,
RootHref: rootHref,