hmn/src/templates/src/timemachine_atom.xml

37 lines
1.3 KiB
XML

{{ noescape "<?xml version=\"1.0\" encoding=\"utf-8\"?>" }}
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://handmade.network/timemachine/submissions</id>
<title type="text">Time Machine | Handmade Network</title>
<subtitle>This summer, dig out your old devices and see what they were actually like to use.</subtitle>
<updated>{{ rfc3339 .Updated }}</updated>
<link href="{{ .TimeMachineUrl }}"/>
<link rel="self" type="application/atom+xml" href="{{ .AtomFeedUrl }}"/>
<link rel="alternate" type="text/html" hreflang="en" href="{{ .SubmissionsUrl }}"/>
<author>
<name>Handmade Network</name>
<email>team@handmade.network</email>
<uri>https://handmade.network/</uri>
</author>
<logo>{{ .LogoUrl }}</logo>
<rights>© 2023 Handmade Network</rights>
{{ range .Submissions }}
<entry>
<id>{{ .Permalink }}</id>
<title>{{ .Title }}</title>
<link rel="alternate" type="text/html" href="{{ .Permalink }}" />
<published>{{ rfc3339 .Date }}</published>
<updated>{{ rfc3339 .Date }}</updated>
<content type="html">
{{ with .Details }}
&lt;ul&gt;
{{ range . }}
&lt;li&gt;&lt;b&gt;{{ .Name }}:&lt;/b&gt; {{ yesescape .Content }}&lt;/li&gt;
{{ end }}
&lt;/ul&gt;
{{ end }}
{{ yesescape .Description }}
</content>
</entry>
{{ end }}
</feed>