mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Replace if
with with
in embedded rss.xml
... resulting in a slightly more compact template.
This commit is contained in:
parent
208086ebff
commit
9150a98f3e
1 changed files with 3 additions and 3 deletions
|
@ -52,8 +52,8 @@ func (t *GoHtmlTemplate) EmbedTemplates() {
|
||||||
<description>Recent content {{ with .Title }}in {{.}} {{ end }}on {{ .Site.Title }}</description>
|
<description>Recent content {{ with .Title }}in {{.}} {{ end }}on {{ .Site.Title }}</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
{{ with .Site.LanguageCode }}<language>{{.}}</language>{{end}}
|
{{ with .Site.LanguageCode }}<language>{{.}}</language>{{end}}
|
||||||
{{ if .Site.Author.email }}<managingEditor>{{.Site.Author.email}}{{ with .Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}
|
{{ with .Site.Author.email }}<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}
|
||||||
{{ if .Site.Author.email }}<webMaster>{{.Site.Author.email}}{{ with .Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}
|
{{ with .Site.Author.email }}<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}
|
||||||
{{ with .Site.Copyright }}<copyright>{{.}}</copyright>{{end}}
|
{{ with .Site.Copyright }}<copyright>{{.}}</copyright>{{end}}
|
||||||
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05" }} {{ with .Date.Format "MST" }}{{ if eq . "UTC" }}UT{{else}}{{.}}{{end}}{{end}}</lastBuildDate>
|
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05" }} {{ with .Date.Format "MST" }}{{ if eq . "UTC" }}UT{{else}}{{.}}{{end}}{{end}}</lastBuildDate>
|
||||||
<atom:link href="{{.Url}}" rel="self" type="application/rss+xml" />
|
<atom:link href="{{.Url}}" rel="self" type="application/rss+xml" />
|
||||||
|
@ -62,7 +62,7 @@ func (t *GoHtmlTemplate) EmbedTemplates() {
|
||||||
<title>{{ .Title }}</title>
|
<title>{{ .Title }}</title>
|
||||||
<link>{{ .Permalink }}</link>
|
<link>{{ .Permalink }}</link>
|
||||||
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05" }} {{ with .Date.Format "MST" }}{{ if eq . "UTC" }}UT{{else}}{{.}}{{end}}{{end}}</pubDate>
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05" }} {{ with .Date.Format "MST" }}{{ if eq . "UTC" }}UT{{else}}{{.}}{{end}}{{end}}</pubDate>
|
||||||
{{ if .Site.Author.email }}<author>{{.Site.Author.email}}{{ with .Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
||||||
<guid>{{ .Permalink }}</guid>
|
<guid>{{ .Permalink }}</guid>
|
||||||
<description>{{ .Content | html }}</description>
|
<description>{{ .Content | html }}</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
Loading…
Reference in a new issue