diff options
author | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-08-16 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-08-16 00:00:00 +0000 |
commit | 5922472635a618dc24ee98c990037ad34ba98b5b60077aa246fbb52ecbc58c49 (patch) | |
tree | 2dab4352b841a72cde95751ca88c8647ead65b2272186e67e76fbef10ac7c981 /layouts/term/term.atom.xml | |
parent | 40bcd08bc6edd2cb9137eef47946242e925d8193336ec08c2bad1559afce04ef (diff) | |
download | hugo-theme-journal-5922472635a618dc24ee98c990037ad34ba98b5b60077aa246fbb52ecbc58c49.tar.gz hugo-theme-journal-5922472635a618dc24ee98c990037ad34ba98b5b60077aa246fbb52ecbc58c49.zip |
Make author element optional in Atom feeds
Diffstat (limited to 'layouts/term/term.atom.xml')
-rw-r--r-- | layouts/term/term.atom.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/layouts/term/term.atom.xml b/layouts/term/term.atom.xml index 50d72fa..9ceeb79 100644 --- a/layouts/term/term.atom.xml +++ b/layouts/term/term.atom.xml @@ -37,11 +37,12 @@ <updated>{{ .Date.UTC.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated> <link href="{{ .Permalink }}atom.xml" rel="self" /> <link href="{{ .Permalink }}" rel="alternate" /> + {{- with $authorName }} <author> - <name>{{ $authorName }}</name> + <name>{{ . }}</name> {{- with $authorEmail }} <email>{{ . }}</email>{{ end }} - </author> + </author>{{ end }} <generator>Hugo -- gohugo.io</generator> <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.UTC.Format "2006") }}</rights> <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }} |