website/feed.xml

32 lines
1 KiB
XML
Raw Normal View History

2019-07-30 19:56:21 +00:00
---
layout: minify
---
2019-12-01 05:42:45 +00:00
{% capture time_seed %}
{{ 'now' | date: "%s" }}
{% endcapture %}
{% assign random = time_seed | times: 1103515245 | plus: 12345 | divided_by: 65536 | modulo: 32768 | modulo: 10 %}
2019-07-30 19:56:21 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
2019-07-30 20:00:39 +00:00
<title>{{ site.title }} - News</title>
2019-07-30 19:56:21 +00:00
<subtitle>{{ site.description }}</subtitle>
2019-12-01 05:42:45 +00:00
<updated>{{ site.time | date_to_xmlschema }}</updated>
2019-07-30 20:00:39 +00:00
<link href="{{ site.url }}/"/>
<link href="{{ site.url }}/feed.xml" rel="self"/>
2019-12-01 05:46:00 +00:00
<id>{{ site.url }}/feed.xml</id>
2019-07-30 19:56:21 +00:00
{% for post in site.posts %}
<entry>
<title>{{ post.date | date: "%B %e, %Y" }}</title>
2019-12-01 05:42:45 +00:00
<author>
<name>{{ site.title }}</name>
</author>
2019-07-30 20:00:39 +00:00
<content type="html">{{ post.content | xml_escape }}</content>
2019-12-01 05:34:36 +00:00
<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>
2019-12-01 05:56:26 +00:00
<id>{{ site.url }}/news/#{{ post.date | date: '%Y-%m-%d' }}</id>
<link href="{{ site.url }}/news/#{{ post.date | date: '%Y-%m-%d' }}"/>
2019-07-30 19:56:21 +00:00
</entry>
{% endfor %}
</feed>