-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfeed.xml
30 lines (30 loc) · 1.24 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
---
layout: none
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
<link>{{ site.url }}</link>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
{% for new in site.data.newnews.news %}
<item>
<title>Impeachment latest: {{ new.date | date: "%B %-d, %Y" }}</title>
<description>Impeachment update from {{ new.date | date: "%B %-d, %Y" }}</description>
<content:encoded><![CDATA[<p>Where we're at: {{ new.yesterday }}</p>
<p>Today:</p>
<ul>
{% for today in new.todays %}
<li>{{ today.item }}</li>
{% endfor %}
</ul>
<p><b>What to Watch For:</b> {{ new.tomorrow }}</p>
]]></content:encoded>
<pubDate>{{ new.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>{{ site.url }}/archive#{{ new.date | date: "%Y-%m-%d" }}</link>
<guid isPermaLink="true">{{ site.url }}/archive#{{ new.date | date: "%Y-%m-%d" }}</guid>
</item>
{% endfor %}
</channel>
</rss>