diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-09-16 21:16:13 -0600 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-09-16 21:16:13 -0600 |
commit | f05cd393b1f70c2844e78ae8d803c80f9553da05 (patch) | |
tree | 26c2797b10e74edb5a878e8ffa63a9d4a533628f /templates | |
parent | f2b044364129ee9e4f66348e747bd53b4d7e55ac (diff) |
clean up a bit of template logic
Diffstat (limited to 'templates')
-rw-r--r-- | templates/ref.gmi | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/templates/ref.gmi b/templates/ref.gmi index 909690f..61296b8 100644 --- a/templates/ref.gmi +++ b/templates/ref.gmi @@ -35,15 +35,13 @@ => mailto:{{.CommitterEmail}} {{.CommitterName}} {{.CommitDate.Format "Mon Jan _2 15:04:05 MST 2006"}} -{{ if ne .Parents nil -}} -{{ with index .Parents 0 -}} ```diffstat +{{ if eq .Parents nil -}} +{{$.Repo.Diffstat $.Ctx "4b825dc642cb6eb9a060e54bf8d69288fbee4904" $.Params.ref}} +{{ else -}} +{{ with index .Parents 0 -}} {{$.Repo.Diffstat $.Ctx . $.Params.ref}} -``` {{ end -}} -{{ else -}} -```diffstat -{{$.Repo.Diffstat $.Ctx "4b825dc642cb6eb9a060e54bf8d69288fbee4904" $.Params.ref}} ``` {{ end -}} {{ end -}} |