I get told to shut up a lot by my friend. This is the microsite that documents this in detail. shutup.jp
postcards microsite
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 34 lines 2.1 kB view raw
1<?xml version="1.0" encoding="utf-8" standalone="yes"?> 2<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom"> 3 <channel> 4 <title>Shut up JP</title> 5 <link>https://shutup.jp/</link> 6 <description>A collection of postcards sent to me by my friend, Claire, inviting me to 'shut up' from many places and in many languages over many years.</description> 7 <language>en-GB</language> 8 <managingEditor>hello@shutup.jp (JP Hastings-Spital)</managingEditor> 9 <webMaster>hello@shutup.jp (JP Hastings-Spital)</webMaster> 10 <copyright>CC BY-NC-SA 4.0</copyright> 11 <lastBuildDate>{{ now.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</lastBuildDate> 12 <atom:link href="https://shutup.jp/feed.xml" rel="self" type="application/rss+xml" /> 13 {{- $sizes := .Sizes -}} 14 {{ range .Postcards }} 15 <item> 16 <title>{{ with .Meta.Location }}{{ .Name }}{{ end }}{{ with .Meta.SentOn }} ({{ .Format "January 2, 2006" }}){{ end }}</title> 17 <link>https://shutup.jp/#{{ .Name }}</link> 18 <pubDate>{{ with .Meta.SentOn }}{{ .Format "Mon, 02 Jan 2006 15:04:05 -0700" }}{{ end }}</pubDate> 19 <guid isPermaLink="false">{{ .Name }}</guid> 20 <description>{{- .Meta.Back.Transcription.Text | htmlEscape -}}</description> 21 <content:encoded> 22 <![CDATA[ 23 <img src="https://shutup.jp/{{.Name}}-front.webp" alt="{{ .Meta.Front.Description | htmlEscape }}" /> 24 <img src="https://shutup.jp/{{.Name}}-back.webp" alt="{{ .Meta.Back.Description | htmlEscape }}" /> 25 <p>{{- .Meta.Back.Transcription.Text -}}</p> 26 {{- with .Meta.Context.Description }}<p>({{ . }})</p>{{ end }} 27 ]]> 28 </content:encoded> 29 <enclosure url="https://shutup.jp/{{.Name}}-front.webp" type="image/webp" length="{{ index $sizes (printf "%s-front.webp" .Name) }}"/> 30 <enclosure url="https://shutup.jp/{{.Name}}-back.webp" type="image/webp" length="{{ index $sizes (printf "%s-back.webp" .Name) }}"/> 31 </item> 32 {{ end }} 33 </channel> 34</rss>