Use managing_editor_email, web_master_email configs

master
Will Faught 2 years ago
parent a21a8f15e7
commit 81e6ecec92

@ -277,8 +277,8 @@ link_to_page = false # Link to the page instead of the front matter link, if pre
page_link = "⏎" # If a front matter link is present, and link_to_page is false, link to the page with this text
[paige.feed.rss]
managing_editor = ""
web_master = ""
managing_editor_email = ""
web_master_email = ""
[paige.git]
commit_url = "" # Example is "https://github.com/willfaught/paige/commit/%s"

@ -104,8 +104,8 @@ name = "Will Faught"
url = "https://willfaught.com/paige"
[params.paige.feed.rss]
managing_editor = "Will Faught"
web_master = "Will Faught"
managing_editor_email = "will.faught@example.com"
web_master_email = "will.faught@example.com"
[taxonomies]
author = "authors"

@ -28,13 +28,13 @@
<lastBuildDate>{{ $page.PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</lastBuildDate>
{{ end }}
<link>{{ $page.Permalink }}</link>
{{ with $page.Param "paige.feed.rss.managing_editor" }}
{{ with $page.Param "paige.feed.rss.managing_editor_email" }}
<managingEditor>{{ . }}</managingEditor>
{{ end }}
{{ with $title }}
<title>{{ . }}</title>
{{ end }}
{{ with $page.Param "paige.feed.rss.web_master" }}
{{ with $page.Param "paige.feed.rss.web_master_email" }}
<webMaster>{{ . }}</webMaster>
{{ end }}
{{ range $pages }}

Loading…
Cancel
Save