mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-19 21:21:39 +02:00
Add Ancestors (plural) method to GitInfo, rename Ancestor field to Parent
Fixes #13839
This commit is contained in:
@@ -117,22 +117,22 @@ hugo --enableGitInfo
|
||||
{{ end }}
|
||||
```
|
||||
|
||||
###### Ancestor
|
||||
### Ancestors
|
||||
|
||||
(`*source.GitInfo`) The file-filtered ancestor commit, if any.
|
||||
(`*source.GitInfo`) The file-filtered ancestor commits, if any.
|
||||
|
||||
```go-html-template
|
||||
{{ partial "inline/changelog.html" .GitInfo }} → 2023-10-09: Add tutorials
|
||||
2025-03-26: Edit GitInfo docs
|
||||
|
||||
{{ define "_partials/inline/changelog.html" }}
|
||||
{{ with . }}
|
||||
{{ partial "inline/changelog.html" .Ancestor }}
|
||||
{{ .CommitDate.Format "2006-01-02" }}: {{ .Subject }}<br>
|
||||
{{ with .GitInfo }}
|
||||
{{ range .Ancestors | first 5 }}
|
||||
{{ .CommitDate.Format "2006-01-02" }}: {{ .Subject }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
```
|
||||
|
||||
### Parent
|
||||
|
||||
(`*source.GitInfo`) The first file-filtered ancestor commit, if any.
|
||||
|
||||
## Last modified date
|
||||
|
||||
By default, when `enableGitInfo` is `true`, the `Lastmod` method on a `Page` object returns the Git AuthorDate of the last commit that included the file.
|
||||
|
2
go.mod
2
go.mod
@@ -8,7 +8,7 @@ require (
|
||||
github.com/aws/aws-sdk-go-v2/service/cloudfront v1.44.10
|
||||
github.com/bep/clocks v0.5.0
|
||||
github.com/bep/debounce v1.2.0
|
||||
github.com/bep/gitmap v1.7.0
|
||||
github.com/bep/gitmap v1.9.0
|
||||
github.com/bep/goat v0.5.0
|
||||
github.com/bep/godartsass/v2 v2.5.0
|
||||
github.com/bep/golibsass v1.2.0
|
||||
|
4
go.sum
4
go.sum
@@ -143,6 +143,10 @@ github.com/bep/debounce v1.2.0 h1:wXds8Kq8qRfwAOpAxHrJDbCXgC5aHSzgQb/0gKsHQqo=
|
||||
github.com/bep/debounce v1.2.0/go.mod h1:H8yggRPQKLUhUoqrJC1bO2xNya7vanpDl7xR3ISbCJ0=
|
||||
github.com/bep/gitmap v1.7.0 h1:jvPnRQv5RG6IDPrwoDiwAhTE/DmdEkOW4poFeUYmjI8=
|
||||
github.com/bep/gitmap v1.7.0/go.mod h1:n+3W1f/rot2hynsqEGxGMErPRgT41n9CkGuzPvz9cIw=
|
||||
github.com/bep/gitmap v1.8.0 h1:j03jlizRRo+0c+XKoV4h6qj4g3L3tUAt/ReSaSRdRWw=
|
||||
github.com/bep/gitmap v1.8.0/go.mod h1:n+3W1f/rot2hynsqEGxGMErPRgT41n9CkGuzPvz9cIw=
|
||||
github.com/bep/gitmap v1.9.0 h1:2pyb1ex+cdwF6c4tsrhEgEKfyNfxE34d5K+s2sa9byc=
|
||||
github.com/bep/gitmap v1.9.0/go.mod h1:Juq6e1qqCRvc1W7nzgadPGI9IGV13ZncEebg5atj4Vo=
|
||||
github.com/bep/goat v0.5.0 h1:S8jLXHCVy/EHIoCY+btKkmcxcXFd34a0Q63/0D4TKeA=
|
||||
github.com/bep/goat v0.5.0/go.mod h1:Md9x7gRxiWKs85yHlVTvHQw9rg86Bm+Y4SuYE8CTH7c=
|
||||
github.com/bep/godartsass/v2 v2.5.0 h1:tKRvwVdyjCIr48qgtLa4gHEdtRkPF8H1OeEhJAEv7xg=
|
||||
|
Reference in New Issue
Block a user