diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-08 14:53:01 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-08 14:53:01 +0100 |
| commit | f6a545b00a4046879b7cc25c06c37bb6b6880b43 (patch) | |
| tree | bc7da8066c080ff850d1e423c0e33bd5fb83e095 /templates/feed.xml | |
| parent | 2998247083406f914b3647cedd19abf5507bf2c6 (diff) | |
Use serde and time
Diffstat (limited to 'templates/feed.xml')
| -rw-r--r-- | templates/feed.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/feed.xml b/templates/feed.xml index 17a4c7c..d95e38c 100644 --- a/templates/feed.xml +++ b/templates/feed.xml @@ -4,13 +4,13 @@ <title>My Ephemeral Blog</title> <description>My Ephemeral Blog</description> <language>en</language> - {{~ it.posts: post}} + {{~ posts: post}} <item> <guid isPermaLink="false">blog:{{= post.id}}</guid> - <pubDate>{{= post.createdOn}}</pubDate> + <pubDate>{{= post.created_on_utc}}</pubDate> <title>{{= post.title}}</title> <description> - {{= post.html}} + {{= post.escaped_html}} </description> </item> {{~}} |