Remove page param id

master
Will Faught 1 year ago
parent c07b847ff1
commit 22968db841

@ -4,7 +4,6 @@ categories = []
date = "{{ .Date }}"
description = ""
draft = true
id = "{{ print .File.Path $now.UnixNano | sha1 }}"
link = ""
tags = []
title = "{{ replace (strings.TrimPrefix (print ($now.Format `2006-01-02`) `-`) .Name) `-` ` ` | title }}"

@ -4,8 +4,7 @@
{{ $format := "2006-01-02T15:04:05Z07:00" }}
{{ $html := $page.AlternativeOutputFormats.Get "html" }}
{{ $icon := $page.Param "paige.feed.atom.icon" }}
{{ $id := "" }}
{{ $ids := dict }}
{{ $id := printf "tag:%s,%s:%s" (urls.Parse site.BaseURL).Host (.PublishDate.Format "2006-01-02") .RelPermalink }}
{{ $language := site.LanguageCode | default site.Language.Lang }}
{{ $limit := site.Config.Services.RSS.Limit }}
{{ $logo := $page.Param "paige.feed.atom.logo" }}
@ -20,14 +19,6 @@
{{ $icon = absLangURL $icon }}
{{ end }}
{{ if $page.Params.id }}
{{ $id = printf "%s?id=%v" (urls.JoinPath site.BaseURL "/") $page.Params.id }}
{{ else if not $page.Date.IsZero }}
{{ $id = printf "tag:%s,%s:%s" (urls.Parse site.BaseURL).Host ($page.Date.Format "2006-01-02") ($page.Date.Format $format) }}
{{ else }}
{{ $id = $page.Permalink }}
{{ end }}
{{ if $logo }}
{{ $logo = absLangURL $logo }}
{{ end }}
@ -118,7 +109,7 @@
{{ range $subpage := $subpages }}
<entry>
{{ $content := .Content }}
{{ $id := printf "tag:%s,%s:%s" (urls.Parse site.BaseURL).Host (.PublishDate.Format "2006-01-02") (cond (.Params.id | not) .RelPermalink .Params.id) }}
{{ $id := printf "tag:%s,%s:%s" (urls.Parse site.BaseURL).Host (.PublishDate.Format "2006-01-02") .RelPermalink }}
{{ $paramlink := and .Params.link (not (.Param "paige.feed.link_to_page")) | not | not }}
{{ $published := cond (not .PublishDate.IsZero) (.PublishDate.Format $format) "" }}
{{ $rights := site.Copyright | markdownify }}
@ -139,12 +130,6 @@
{{ $content = .Description | markdownify}}
{{ end }}
{{ with index $ids $id }}
{{ warnf "layouts/_default/list.atom.xml: pages %s and %s have the same ID" . $subpage.RelPermalink }}
{{ end }}
{{ $ids = merge (dict $id .RelPermalink) $ids }}
{{ if not $title }}
{{ warnf "layouts/_default/list.atom.xml: page %s does not have a title" .RelPermalink }}
{{ end }}

@ -4,7 +4,6 @@
{{ $description := or $page.Description "Recent content" }}
{{ $feed := ($page.OutputFormats.Get "rss").Permalink }}
{{ $format := "Mon, 02 Jan 2006 15:04:05 MST" }}
{{ $guids := dict }}
{{ $html := $page.AlternativeOutputFormats.Get "html" }}
{{ $language := site.LanguageCode | default site.Language.Lang }}
{{ $lastbuilddate := (partial "paige/changed.html" $page).Format $format }}
@ -109,12 +108,6 @@
{{ warnf "layouts/_default/rss.xml: page %s does not have a title or description" .RelPermalink }}
{{ end }}
{{ with index $guids $guid }}
{{ warnf "layouts/_default/rss.xml: pages %s and %s have the same GUID" . $subpage.RelPermalink }}
{{ end }}
{{ $guids = merge (dict $guid .RelPermalink) $guids }}
{{ with $author }}
<author>{{ . }}</author>
{{ end }}

Loading…
Cancel
Save