23 lines
793 B
Plaintext
Executable File
23 lines
793 B
Plaintext
Executable File
:go:func RSS(host, author string, posts []mindflow.Post, r *http.Request)
|
|
doctype xml
|
|
|
|
rss(version='2.0')
|
|
channel
|
|
title Arav's dwelling
|
|
description Updates on my websites and infrastructure.
|
|
language en-gb
|
|
| <link>#{host}</link>
|
|
|
|
each post in posts
|
|
item
|
|
title= post.Title
|
|
category= post.Category.Name
|
|
guid!= `${post.PostID()}`
|
|
pubDate= util.ToClientTimezone(post.Date, r).Format(time.RFC1123Z)
|
|
| <link>#{host}/mindflow##{post.PostID()}</link>
|
|
author!= author
|
|
description
|
|
| <![CDATA[
|
|
each line in strings.Split(post.Body, "\n")
|
|
p!= line
|
|
| ]]> |