-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathfeed.xml
More file actions
25 lines (25 loc) · 842 Bytes
/
feed.xml
File metadata and controls
25 lines (25 loc) · 842 Bytes
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
---
layout: none
permalink: /feed.xml
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>WebAssembly News</title>
<link href="https://webassembly.org/"/>
<link href="https://webassembly.org/feed.xml" rel="self"/>
<updated>{{ site.posts[0].date | date_to_xmlschema }}</updated>
<id>https://webassembly.org/</id>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<author>
<name>{{ post.author }}</name>
</author>
<link href="https://webassembly.org{{ post.url }}"/>
<id>https://webassembly.org{{ post.url }}</id>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<summary>{{ post.excerpt | strip_html | strip_newlines }}</summary>
<content type="html"><![CDATA[{{ post.content }}]]></content>
</entry>
{% endfor %}
</feed>