forked from binary-com/daily-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
45 lines (45 loc) · 1.6 KB
/
feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>{{ site.title }}</title>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
<link>{{ site.url }}</link>
<description>Dave Evans, Market Analyst</description>
<lastBuildDate>{{ site.date | date_to_long_string }}</lastBuildDate>
<language>en-US</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>Jekyll 3.4.0</generator>
{% assign engPosts = site.posts | where: "language", "en" %}
{% for post in engPosts limit:10 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>{{ site.url }}{{ post.url }}</link>
<comments>{{ site.url }}{{ post.url }}</comments>
<pubDate>{{ post.date | date_to_long_string }}</pubDate>
<dc:creator><![CDATA[regentbinary]]></dc:creator>
<category><![CDATA[Market]]></category>
<guid isPermaLink="false">{{ site.url }}{{ post.url }}</guid>
<description>
<![CDATA[
{{ post.content | truncatewords: 50 }}
]]>
</description>
<content:encoded>
<![CDATA[
{{ post.content }}
]]>
</content:encoded>
</item>
{% endfor %}
</channel>
</rss>