Make description in rss feed dynamic
This commit is contained in:
parent
bfc50f50bc
commit
035c4349cf
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Daniel Siepmann - Coding is Art</title>
|
||||
<description>This is an example of an RSS feed</description>
|
||||
<description>List of blog posts at daniel-siepmann.de</description>
|
||||
<link>{f:uri.page(pageUid: 1, absolute: 1)}</link>
|
||||
<atom:link href="{f:uri.page(pageUid: 1. pageType: 1533906435, additionalParams: {sitemap: 'rssFeedAllBlogPosts'}, absolute: 1)}" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>{f:format.date(date: 'now', format: 'D, d M Y H:i:s O')}</lastBuildDate>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<f:section name="Item">
|
||||
<item>
|
||||
<title>{item.title}</title>
|
||||
<description>Here is some text containing an interesting description.</description>
|
||||
<description>{item.abstract}</description>
|
||||
<link>{f:uri.page(pageUid: item.uid, absolute: 1)}</link>
|
||||
<pubDate>{f:format.date(date: item.lastUpdated, format: 'D, d M Y H:i:s O')}</pubDate>
|
||||
<guid isPermaLink="true">{f:uri.page(pageUid: item.uid, absolute: 1)}</guid>
|
||||
|
|
Loading…
Reference in a new issue