From 42745471b8a9244b9906eb15538501e5da254d3a Mon Sep 17 00:00:00 2001 From: yingyu5658 Date: Mon, 29 Dec 2025 21:21:39 +0800 Subject: chore: Tweak some HTML structure --- layouts/weekly/rss.xml | 85 -------------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 layouts/weekly/rss.xml (limited to 'layouts/weekly/rss.xml') diff --git a/layouts/weekly/rss.xml b/layouts/weekly/rss.xml deleted file mode 100644 index 8550683..0000000 --- a/layouts/weekly/rss.xml +++ /dev/null @@ -1,85 +0,0 @@ -{{- /* Deprecate site.Author.email in favor of site.Params.author.email */}} -{{- $authorEmail := "" }} -{{- with site.Params.author }} - {{- if reflect.IsMap . }} - {{- with .email }} - {{- $authorEmail = . }} - {{- end }} - {{- end }} -{{- else }} - {{- with site.Author.email }} - {{- $authorEmail = . }} - {{- warnf "The author key in site configuration is deprecated. Use params.author.email instead." }} - {{- end }} -{{- end }} - -{{- /* Deprecate site.Author.name in favor of site.Params.author.name */}} -{{- $authorName := "" }} -{{- with site.Params.author }} - {{- if reflect.IsMap . }} - {{- with .name }} - {{- $authorName = . }} - {{- end }} - {{- else }} - {{- $authorName = . }} - {{- end }} -{{- else }} - {{- with site.Author.name }} - {{- $authorName = . }} - {{- warnf "The author key in site configuration is deprecated. Use params.author.name instead." }} - {{- end }} -{{- end }} - -{{- $pctx := . }} -{{- if .IsHome }}{{ $pctx = .Site }}{{ end }} -{{- $pages := slice }} -{{- if or $.IsHome $.IsSection }} -{{- $pages = $pctx.RegularPages }} -{{- else }} -{{- $pages = $pctx.Pages }} -{{- end }} -{{- $limit := .Site.Params.RSS.pageLimit }} -{{- if ge $limit 1 }} -{{- $pages = $pages | first $limit }} -{{- end }} -{{- printf "" | safeHTML }} - - - {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} on {{ end }}{{ .Site.Title }}{{ end }} - {{ .Permalink }} - Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{ . }} {{ end }}{{ end }}on {{ .Site.Title }} - Hugo - {{ site.LanguageCode }} - {{ with $authorEmail }} - {{ . }}{{ with $authorName }} ({{ . }}){{ end }} - {{ end }} - {{ with $authorEmail }} - {{ . }}{{ with $authorName }} ({{ . }}){{ end }} - {{ end }} - {{ with .Site.Params.copyright }} - {{ . }} - {{ end }} - {{ if not .Date.IsZero }} - {{ (index $pages.ByLastmod.Reverse 0).Lastmod.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} - {{ end }} - {{ if and .Site.Params.RSS.followFeedId .Site.Params.RSS.followUserId }} - - {{ .Site.Params.RSS.followFeedId }} - {{ .Site.Params.RSS.followUserId }} - - {{ end }} - {{- with .OutputFormats.Get "RSS" }} - {{ printf "" .Permalink .MediaType | safeHTML }} - {{- end }} - {{- range $pages }} - - {{ .Title }} - {{ .Permalink }} - {{ .PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} - {{- with $authorEmail }}{{ . }}{{ with $authorName }} ({{ . }}){{ end }}{{ end }} - {{ .Permalink }} - {{ .Content | transform.XMLEscape | safeHTML }} - - {{- end }} - - -- cgit v1.2.3