Move link_to_page, page_link config to feed

master
Will Faught 2 years ago
parent 71e1aacc9e
commit a9545165ce

@ -271,15 +271,11 @@ format = ":date_long" # Hugo date format
[paige.feed]
hide_page = false
[paige.feed.atom]
link_to_page = false # Link to the page instead of the front matter link, if present
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]
link_to_page = false # Link to the page instead of the front matter link, if present
managing_editor = "" # Example is "Will Faught <will.faught@example.com>"
page_link = "⏎" # If a front matter link is present, and link_to_page is false, link to the page with this text
web_master = "" # Example is "Will Faught <will.faught@example.com>"
[paige.git]

@ -95,8 +95,8 @@
{{ end }}
{{ $content := .Content }}
{{ if $content }}
{{ if and .Params.link (not (.Param "paige.feed.atom.link_to_page")) }}
{{ $link := or (.Param "paige.feed.atom.page_link" | markdownify) "⏎" }}
{{ if and .Params.link (not (.Param "paige.feed.link_to_page")) }}
{{ $link := or (.Param "paige.feed.page_link" | markdownify) "⏎" }}
{{ $footer := printf `<p><a href="%s" title="%s">%s</a></p>` .Permalink .Title $link }}
{{ $content = print $content $footer }}
{{ end }}
@ -127,7 +127,7 @@
{{ end }}
{{ end }}
{{ end }}
{{ if and .Params.link (not (.Param "paige.feed.atom.link_to_page")) }}
{{ if and .Params.link (not (.Param "paige.feed.link_to_page")) }}
<link href="{{ .Params.link | safeURL }}" rel="alternate" type="text/html"/>
{{ else }}
<link href="{{ .Permalink | safeURL }}" rel="alternate" type="text/html"/>

@ -53,8 +53,8 @@
{{ end }}
{{ $description := .Content }}
{{ if $description }}
{{ if and .Params.link (not (.Param "paige.feed.rss.link_to_page")) }}
{{ $link := or (.Param "paige.feed.rss.page_link" | markdownify) "⏎" }}
{{ if and .Params.link (not (.Param "paige.feed.link_to_page")) }}
{{ $link := or (.Param "paige.feed.page_link" | markdownify) "⏎" }}
{{ $footer := printf `<p><a href="%s" title="%s">%s</a></p>` .Permalink $title $link }}
{{ $description = print $description $footer }}
{{ end }}
@ -74,7 +74,7 @@
{{ $permalink = false }}
{{ end }}
<guid {{ if not $permalink }} isPermaLink="false" {{ end }}>{{ $guid }}</guid>
{{ if and .Params.link (not (.Param "paige.feed.atom.link_to_page")) }}
{{ if and .Params.link (not (.Param "paige.feed.link_to_page")) }}
<link>{{ .Params.link | safeURL }}</link>
{{ else }}
<link>{{ .Permalink | safeURL }}</link>

Loading…
Cancel
Save