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 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] [paige.feed.rss]
managing_editor = "" managing_editor_email = ""
web_master = "" web_master_email = ""
[paige.git] [paige.git]
commit_url = "" # Example is "https://github.com/willfaught/paige/commit/%s" commit_url = "" # Example is "https://github.com/willfaught/paige/commit/%s"

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

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

Loading…
Cancel
Save