mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Add more information to the siteInfo (and configuration options) for better RSS generation.
This commit is contained in:
parent
93bcddebb3
commit
bb9bcdcf30
1 changed files with 22 additions and 14 deletions
|
@ -76,8 +76,12 @@ type SiteInfo struct {
|
|||
Taxonomies TaxonomyList
|
||||
Indexes *TaxonomyList // legacy, should be identical to Taxonomies
|
||||
Recent *Pages
|
||||
LastChange time.Time
|
||||
Title string
|
||||
Author string
|
||||
AuthorEmail string
|
||||
LanguageCode string
|
||||
Copyright string
|
||||
LastChange time.Time
|
||||
ConfigGet func(key string) interface{}
|
||||
Permalinks PermalinkOverrides
|
||||
Params map[string]interface{}
|
||||
|
@ -230,6 +234,10 @@ func (s *Site) initializeSiteInfo() {
|
|||
s.Info = SiteInfo{
|
||||
BaseUrl: template.URL(helpers.SanitizeUrl(viper.GetString("BaseUrl"))),
|
||||
Title: viper.GetString("Title"),
|
||||
Author: viper.GetString("author"),
|
||||
AuthorEmail: viper.GetString("authoremail"),
|
||||
LanguageCode: viper.GetString("languagecode"),
|
||||
Copyright: viper.GetString("copyright"),
|
||||
Recent: &s.Pages,
|
||||
Params: params,
|
||||
Permalinks: permalinks,
|
||||
|
|
Loading…
Reference in a new issue