mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 01:35:56 +01:00
Create podcast XML & XSL
This commit is contained in:
parent
ae89605936
commit
09de70ba98
7 changed files with 42 additions and 15 deletions
|
@ -220,6 +220,7 @@ date = ["date", "publishDate", "lastmod", ":git"]
|
||||||
name = 'rss'
|
name = 'rss'
|
||||||
[outputFormats.podcast]
|
[outputFormats.podcast]
|
||||||
baseName = 'podcast'
|
baseName = 'podcast'
|
||||||
|
name = 'Podcast'
|
||||||
mediaType = 'application/rss+xml'
|
mediaType = 'application/rss+xml'
|
||||||
isHTML = false
|
isHTML = false
|
||||||
[outputFormats.gemini]
|
[outputFormats.gemini]
|
||||||
|
|
|
@ -6,15 +6,17 @@
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
||||||
{{- printf "<?xml-stylesheet href=\"/rss.xsl\" type=\"text/xsl\"?>" | safeHTML }}
|
{{- printf "<?xml-stylesheet href=\"/rss.xsl\" type=\"text/xsl\"?>" | safeHTML }}
|
||||||
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
|
||||||
<channel>
|
<channel>
|
||||||
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
||||||
<link>{{ .Permalink | absURL }}</link>
|
<link>{{ .Permalink | absURL }}</link>
|
||||||
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
|
<description>Narrations of recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
|
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
|
||||||
<language>{{.}}</language>{{end}}{{ with .Site.Params.Author.email }}
|
<language>{{.}}</language>{{end}}{{ with .Site.Params.Author.email }}
|
||||||
<managingEditor>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Params.Author.email }}
|
<managingEditor>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Params.Author.email }}
|
||||||
<webMaster>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
|
<webMaster>{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with $.Site.Params.Author.name }}
|
||||||
|
<itunes:author>{{.}}<itunes:author>{{ end }}
|
||||||
|
<itunes:image>{{ "profile-512.jpg" | absURL }}</itunes:image>{{ with .Site.Copyright }}
|
||||||
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
|
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
|
||||||
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
||||||
{{- range $i, $page := $pages -}}
|
{{- range $i, $page := $pages -}}
|
||||||
|
@ -26,6 +28,7 @@
|
||||||
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
||||||
<guid>{{ .Permalink | absURL }}</guid>
|
<guid>{{ .Permalink | absURL }}</guid>
|
||||||
<description>{{- partial "description.txt" . -}}</description>
|
<description>{{- partial "description.txt" . -}}</description>
|
||||||
|
<itunes:summary>{{- partial "feedpost.html" . | html -}}</itunes:summary>
|
||||||
<content:encoded>{{- partial "feedpost.html" . | html -}}</content:encoded>
|
<content:encoded>{{- partial "feedpost.html" . | html -}}</content:encoded>
|
||||||
{{- range .Params.syndications}}
|
{{- range .Params.syndications}}
|
||||||
<dc:relation>{{ . }}</dc:relation>
|
<dc:relation>{{ . }}</dc:relation>
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
{{- else if eq . "rss"}}RSS
|
{{- else if eq . "rss"}}RSS
|
||||||
{{- else if eq . "opml" }}OPML Feed
|
{{- else if eq . "opml" }}OPML Feed
|
||||||
{{- else if eq . "gemini" }}Gemini
|
{{- else if eq . "gemini" }}Gemini
|
||||||
|
{{- else if eq . "podcast" }}Audiocast
|
||||||
{{- else }}Alternate
|
{{- else }}Alternate
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{{- if or (strings.Contains .Summary "\n") (eq (len .Summary) 0) -}}
|
||||||
{{- if .Params.bookmarkOf -}}
|
{{- if .Params.bookmarkOf -}}
|
||||||
{{- $reference := partial "reference.obj" (dict "url" .Params.bookmarkOf "page" .) -}}
|
{{- $reference := partial "reference.obj" (dict "url" .Params.bookmarkOf "page" .) -}}
|
||||||
Thoughts on a bookmarked article{{ with $reference.name }}: {{.}}{{ end }}.
|
Thoughts on a bookmarked article{{ with $reference.name }}: {{.}}{{ end }}.
|
||||||
|
@ -7,3 +8,7 @@
|
||||||
{{- $desc -}}
|
{{- $desc -}}
|
||||||
{{- range .Params.tags }} #{{.}}{{ end -}}
|
{{- range .Params.tags }} #{{.}}{{ end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- .Summary -}}
|
||||||
|
{{- range .Params.tags }} #{{.}}{{ end -}}
|
||||||
|
{{- end -}}
|
|
@ -152,10 +152,8 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="none"><path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="none"><path d="M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z"/></svg>
|
||||||
{{- else if (eq .name "pixelfed") -}}
|
{{- else if (eq .name "pixelfed") -}}
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M10.072 6.309c-1.722 0-3.168 1.39-3.168 3.109v8.209a1 1 0 0 0 1.692.72l2.853-2.728h1.799c2.6 0 4.756-2.08 4.756-4.654s-2.156-4.656-4.756-4.656zm0 2h3.176c1.548 0 2.756 1.192 2.756 2.656 0 1.463-1.208 2.654-2.756 2.654h-2.201a1 1 0 0 0-.692.277l-1.45 1.391V9.418c0-.61.497-1.11 1.167-1.11z"/><path d="M12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0Zm0 2c5.535 0 10 4.465 10 10s-4.465 10-10 10S2 17.535 2 12 6.465 2 12 2Z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor"><path d="M10.072 6.309c-1.722 0-3.168 1.39-3.168 3.109v8.209a1 1 0 0 0 1.692.72l2.853-2.728h1.799c2.6 0 4.756-2.08 4.756-4.654s-2.156-4.656-4.756-4.656zm0 2h3.176c1.548 0 2.756 1.192 2.756 2.656 0 1.463-1.208 2.654-2.756 2.654h-2.201a1 1 0 0 0-.692.277l-1.45 1.391V9.418c0-.61.497-1.11 1.167-1.11z"/><path d="M12 0C5.384 0 0 5.384 0 12s5.384 12 12 12 12-5.384 12-12S18.616 0 12 0Zm0 2c5.535 0 10 4.465 10 10s-4.465 10-10 10S2 17.535 2 12 6.465 2 12 2Z"/></svg>
|
||||||
{{- else if (eq .name "podcasts-apple") -}}
|
{{- else if (eq .name "podcast") -}}
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="none"><path d="M5.34 0A5.328 5.328 0 000 5.34v13.32A5.328 5.328 0 005.34 24h13.32A5.328 5.328 0 0024 18.66V5.34A5.328 5.328 0 0018.66 0zm6.525 2.568c2.336 0 4.448.902 6.056 2.587 1.224 1.272 1.912 2.619 2.264 4.392.12.59.12 2.2.007 2.864a8.506 8.506 0 01-3.24 5.296c-.608.46-2.096 1.261-2.336 1.261-.088 0-.096-.091-.056-.46.072-.592.144-.715.48-.856.536-.224 1.448-.874 2.008-1.435a7.644 7.644 0 002.008-3.536c.208-.824.184-2.656-.048-3.504-.728-2.696-2.928-4.792-5.624-5.352-.784-.16-2.208-.16-3 0-2.728.56-4.984 2.76-5.672 5.528-.184.752-.184 2.584 0 3.336.456 1.832 1.64 3.512 3.192 4.512.304.2.672.408.824.472.336.144.408.264.472.856.04.36.03.464-.056.464-.056 0-.464-.176-.896-.384l-.04-.03c-2.472-1.216-4.056-3.274-4.632-6.012-.144-.706-.168-2.392-.03-3.04.36-1.74 1.048-3.1 2.192-4.304 1.648-1.737 3.768-2.656 6.128-2.656zm.134 2.81c.409.004.803.04 1.106.106 2.784.62 4.76 3.408 4.376 6.174-.152 1.114-.536 2.03-1.216 2.88-.336.43-1.152 1.15-1.296 1.15-.023 0-.048-.272-.048-.603v-.605l.416-.496c1.568-1.878 1.456-4.502-.256-6.224-.664-.67-1.432-1.064-2.424-1.246-.64-.118-.776-.118-1.448-.008-1.02.167-1.81.562-2.512 1.256-1.72 1.704-1.832 4.342-.264 6.222l.413.496v.608c0 .336-.027.608-.06.608-.03 0-.264-.16-.512-.36l-.034-.011c-.832-.664-1.568-1.842-1.872-2.997-.184-.698-.184-2.024.008-2.72.504-1.878 1.888-3.335 3.808-4.019.41-.145 1.133-.22 1.814-.211zm-.13 2.99c.31 0 .62.06.844.178.488.253.888.745 1.04 1.259.464 1.578-1.208 2.96-2.72 2.254h-.015c-.712-.331-1.096-.956-1.104-1.77 0-.733.408-1.371 1.112-1.745.224-.117.534-.176.844-.176zm-.011 4.728c.988-.004 1.706.349 1.97.97.198.464.124 1.932-.218 4.302-.232 1.656-.36 2.074-.68 2.356-.44.39-1.064.498-1.656.288h-.003c-.716-.257-.87-.605-1.164-2.644-.341-2.37-.416-3.838-.218-4.302.262-.616.974-.966 1.97-.97z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 32 32" fill="currentColor"><path d="M16 0C8.485 0 2.37 6.114 2.37 13.63c0 5.51 3.294 10.256 8.01 12.402-.134-1-.24-1.993-.283-2.833-3.208-1.986-5.356-5.527-5.356-9.57C4.74 7.423 9.792 2.37 16 2.37s11.26 5.052 11.26 11.26c0 4.042-2.149 7.583-5.357 9.57-.043.838-.149 1.832-.283 2.832 4.716-2.146 8.01-6.892 8.01-12.402C29.63 6.114 23.515 0 16 0Zm0 4.74c-4.902 0-8.889 3.988-8.889 8.89a8.874 8.874 0 0 0 3.313 6.912 4.857 4.857 0 0 1 1.354-1.956A6.505 6.505 0 0 1 9.48 13.63 6.527 6.527 0 0 1 16 7.11a6.527 6.527 0 0 1 6.519 6.519 6.505 6.505 0 0 1-2.297 4.956 4.83 4.83 0 0 1 1.354 1.956 8.874 8.874 0 0 0 3.313-6.912c0-4.902-3.987-8.89-8.889-8.89zm0 4.741a4.153 4.153 0 0 0-4.148 4.149A4.153 4.153 0 0 0 16 17.778a4.153 4.153 0 0 0 4.148-4.148A4.153 4.153 0 0 0 16 9.48zm0 2.37c.98 0 1.778.798 1.778 1.779A1.78 1.78 0 0 1 16 15.407a1.78 1.78 0 0 1-1.778-1.777c0-.98.798-1.778 1.778-1.778zm0 7.112c-3.744 0-4.148 2.46-4.148 3.518 0 1.949.636 5.868.984 7.355.153.652.768 2.164 3.164 2.164s3.011-1.512 3.164-2.164c.348-1.485.984-5.406.984-7.355 0-1.058-.404-3.518-4.148-3.518zm0 2.37c1.778 0 1.778.664 1.778 1.148 0 1.583-.558 5.252-.922 6.813-.03.124-.079.336-.856.336s-.827-.21-.856-.334c-.363-1.557-.922-5.231-.922-6.815 0-.484 0-1.148 1.778-1.148z" style="stroke-width:1"/></svg>
|
||||||
{{- else if (eq .name "podcasts-google") -}}
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="none"><path d="M1.5 9.68c-.83 0-1.5.67-1.5 1.5V12.81a1.5 1.5 0 1 0 3 0v-1.63c0-.83-.67-1.5-1.5-1.5zM22.5 9.68c-.83 0-1.5.67-1.5 1.5V12.81a1.5 1.5 0 1 0 3 0v-1.63c0-.83-.67-1.5-1.5-1.5zM6.68 14.59c-.83 0-1.5.67-1.5 1.5V17.72a1.5 1.5 0 1 0 3 0V16.1c0-.83-.67-1.5-1.5-1.5zM6.68 4.77c-.83 0-1.5.67-1.5 1.5V11.63a1.5 1.5 0 0 0 3 0V6.26c0-.83-.67-1.5-1.5-1.5zM17.32 4.77c-.83 0-1.5.67-1.5 1.5V7.91a1.5 1.5 0 0 0 3 0V6.27c0-.83-.67-1.5-1.5-1.5zM12 0c-.83 0-1.5.67-1.5 1.5v1.63a1.5 1.5 0 1 0 3 0V1.5C13.5.67 12.83 0 12 0zM12 19.36c-.83 0-1.5.67-1.5 1.5V22.5a1.5 1.5 0 1 0 3 .01v-1.64c0-.82-.67-1.5-1.5-1.5zM17.32 10.9c-.83 0-1.5.68-1.5 1.5v5.33a1.5 1.5 0 0 0 3 0V12.4c0-.83-.67-1.5-1.5-1.5zM12 6.13c-.83 0-1.5.68-1.5 1.5v8.73a1.5 1.5 0 0 0 3 0V7.64c0-.83-.67-1.5-1.5-1.5z"/></svg>
|
|
||||||
{{- else if (eq .name "polywork") -}}
|
{{- else if (eq .name "polywork") -}}
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="none"><path d="M19.125 0H4.875A4.865 4.865 0 0 0 0 4.875v14.25C0 21.825 2.175 24 4.875 24h6.6c2.7 0 4.875-2.175 4.875-4.875V16.65h2.775c2.7 0 4.875-2.175 4.875-4.875v-6.9C24 2.175 21.825 0 19.125 0zM16.5 1.275h2.625a3.6 3.6 0 0 1 3.6 3.6v2.7H16.5v-6.3zM15.075 9v6.45H8.85V9h6.225zM8.85 1.2h6.225v6.375H8.85V1.2zM1.275 4.8a3.6 3.6 0 0 1 3.6-3.6H7.5v6.375H1.275V4.8zM7.5 9v6.45H1.2V9h6.3zm0 13.725H4.8a3.6 3.6 0 0 1-3.6-3.6V16.8h6.3v5.925zm7.575-3.525a3.6 3.6 0 0 1-3.6 3.6H8.85v-5.925h6.225V19.2zm7.65-7.35a3.6 3.6 0 0 1-3.6 3.6H16.5V9h6.225v2.85z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="none"><path d="M19.125 0H4.875A4.865 4.865 0 0 0 0 4.875v14.25C0 21.825 2.175 24 4.875 24h6.6c2.7 0 4.875-2.175 4.875-4.875V16.65h2.775c2.7 0 4.875-2.175 4.875-4.875v-6.9C24 2.175 21.825 0 19.125 0zM16.5 1.275h2.625a3.6 3.6 0 0 1 3.6 3.6v2.7H16.5v-6.3zM15.075 9v6.45H8.85V9h6.225zM8.85 1.2h6.225v6.375H8.85V1.2zM1.275 4.8a3.6 3.6 0 0 1 3.6-3.6H7.5v6.375H1.275V4.8zM7.5 9v6.45H1.2V9h6.3zm0 13.725H4.8a3.6 3.6 0 0 1-3.6-3.6V16.8h6.3v5.925zm7.575-3.525a3.6 3.6 0 0 1-3.6 3.6H8.85v-5.925h6.225V19.2zm7.65-7.35a3.6 3.6 0 0 1-3.6 3.6H16.5V9h6.225v2.85z"/></svg>
|
||||||
{{- else if (eq .name "reddit") -}}
|
{{- else if (eq .name "reddit") -}}
|
||||||
|
|
13
layouts/shortcodes/social.html
Normal file
13
layouts/shortcodes/social.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{{- $medium := .Get 0 -}}
|
||||||
|
{{- $details := dict -}}
|
||||||
|
{{- range site.Params.social -}}
|
||||||
|
{{- if eq .name $medium -}}
|
||||||
|
{{- $details = . -}}
|
||||||
|
{{- break -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- with $details -}}
|
||||||
|
<a href="{{ .url }}" target="_blank" rel="{{ if .rel }}{{ .rel }}{{ else }}me noopener{{ end }}" title="{{ .name | humanize }}">{{ .name }}</a>
|
||||||
|
{{- else -}}
|
||||||
|
{{ errorf "Unknown social: %s" $medium }}
|
||||||
|
{{- end -}}
|
|
@ -2,9 +2,15 @@
|
||||||
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
|
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
|
||||||
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
|
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
|
||||||
<xsl:template match="/">
|
<xsl:template match="/">
|
||||||
|
<xsl:variable name="pageTitle">
|
||||||
|
<xsl:choose>
|
||||||
|
<xsl:when test="/rss/channel/itunes:image">Podcast</xsl:when>
|
||||||
|
<xsl:otherwise>RSS feed</xsl:otherwise>
|
||||||
|
</xsl:choose>
|
||||||
|
</xsl:variable>
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr">
|
||||||
<head>
|
<head>
|
||||||
<title><xsl:value-of select="/rss/channel/title"/> RSS Feed</title>
|
<title><xsl:value-of select="/rss/channel/title"/>: <xsl:value-of select="$pageTitle"/></title>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1" />
|
<meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1" />
|
||||||
<meta http-equiv="content-language" content="en_US" />
|
<meta http-equiv="content-language" content="en_US" />
|
||||||
|
@ -66,7 +72,7 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<header>
|
<header>
|
||||||
<h1>RSS Feed</h1>
|
<h1><xsl:value-of select="$pageTitle"/></h1>
|
||||||
<h2>
|
<h2>
|
||||||
<xsl:value-of select="/rss/channel/title"/>
|
<xsl:value-of select="/rss/channel/title"/>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
Loading…
Reference in a new issue