mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-08 21:25:56 +01:00
14 lines
721 B
XML
14 lines
721 B
XML
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
|
{{- printf "<?xml-stylesheet href=\"/opml.xsl\" type=\"text/xsl\"?>" | safeHTML }}
|
|
<opml version="2.0">
|
|
<head>
|
|
<title>{{ .Title }} (reading lists byJP)</title>
|
|
<dateModified>{{ .Lastmod.Format "02 Jan 2006 15:04 MST" }}</dateModified>
|
|
<ownerId>https://www.byjp.me</ownerId>
|
|
</head>
|
|
<body>
|
|
{{ range .Pages -}}
|
|
<outline {{ if .Date }}created="{{ .Date.Format "02 Jan 2006 15:04 MST" }}" {{ end }}title="{{ .Title }}" text="{{ .Title }}" type="rss"{{ with .OutputFormats.Get "rss"}} xmlUrl="{{ .Permalink }}"{{ end }} htmlUrl="{{ .Permalink }}" description="{{ .Summary }}"/>
|
|
{{ end -}}
|
|
</body>
|
|
</opml>
|