summaryrefslogtreecommitdiff
path: root/src/feed/cloudflare.xml
blob: cea82c23a5d3ca3027e17e04705709769019a7ef (plain)
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
---
layout: null
---
{% assign documents = site.documents | where: 'feed', true | where_exp: 'post', 'post.tags contains "Cloudflare"' | sort: 'date' | reverse %}<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>{{ site.title }}</title>
		<description>{{ site.description | strip | xml_escape }}</description>
		<link>{{ site.baseurl | prepend: site.url }}</link>
		<language>en</language>
		<managingEditor>{{ site.email }} ({{ site.author }})</managingEditor>
		<webMaster>{{ site.email }} ({{ site.author }})</webMaster>
		<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
		<docs>http://www.feedvalidator.org/docs/rss2.html</docs>
		<ttl>1440</ttl>
		<generator>Jekyll v{{ jekyll.version }}</generator>
		<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />{% for post in documents limit:10 %}
		<item>
			<title>{{ post.title }}</title>
			<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
			<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
			<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>{% if post.description %}
			<description>{{ post.description | strip | xml_escape }}</description>{% endif %}
			<author>{{ site.email }} ({{ site.author }})</author>{% for tag in post.tags %}
			<category>{{ tag | xml_escape }}</category>{% endfor %}{% for cat in post.categories %}
			<category>{{ cat | xml_escape }}</category>{% endfor %}
		</item>{% endfor %}
	</channel>
</rss>