Update gasbuddy_rssfeed_test_00a.rss
This commit is contained in:
@@ -1,18 +1,19 @@
|
|||||||
{
|
<?xml version=1.0 encoding=UTF-8 ?>
|
||||||
"version": "https://jsonfeed.org/version/1",
|
<rss version=2.0>
|
||||||
"title": "My Example Feed",
|
<channel>
|
||||||
"home_page_url": "https://example.org/",
|
<title>{{ page.title | xml_escape }}</title>
|
||||||
"feed_url": "https://example.org/feed.json",
|
<description>{{ page.description | strip_html | xml_escape }}</description>
|
||||||
"items": [
|
<link>{{ request.url | xml_escape }}</link>
|
||||||
{
|
{% entityview logical_name:'adx_webpage', name:'News Articles', page_size:20 -%}
|
||||||
"id": "2",
|
{% for item in entityview.records %}
|
||||||
"content_text": "This is a second item.",
|
<item>
|
||||||
"url": "https://example.org/second-item"
|
<title>{{ item.adx_name | xml_escape }}</title>
|
||||||
},
|
<description>{{ item.adx_copy | escape }}</description>
|
||||||
{
|
<link>{{ request.url | base | xml_escape }}{{ item.url | xml_escape }}</link>
|
||||||
"id": "1",
|
<guid>{{ item.id | xml_escape }}</guid>
|
||||||
"content_html": "<p>Hello, world!</p>",
|
<pubDate>{{ item.createdon | date_to_rfc822 }}</pubDate>
|
||||||
"url": "https://example.org/initial-post"
|
</item>
|
||||||
}
|
{% endfor -%}
|
||||||
]
|
{% endentityview %}
|
||||||
}
|
</channel>
|
||||||
|
</rss>
|
||||||
Reference in New Issue
Block a user