summaryrefslogtreecommitdiff
path: root/src/atom/assixt.xml
blob: a8db160b2f461f840b37063fde38731181fbe397 (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
30
31
32
33
34
---
layout: null
---
{% assign documents = site.documents | where: 'feed', true | where_exp: 'post', 'post.tags contains "Assixt"' | sort: 'date' | reverse %}<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>{{ site.url }}{{ site.baseurl }}/</id>
	<title>{{ site.title | xml_escape }}</title>
	<subtitle>{{ site.description | strip | xml_escape }}</subtitle>
	<updated>{{ site.time | date_to_xmlschema }}</updated>
	<link rel="alternate" type="text/html" href="{{ site.baseurl | prepend: site.url }}" />
	<link rel="alternate" type="application/rss+xml" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
	<link rel="self" type="application/atom+xml" href="{{ "/atom.xml" | prepend: site.baseurl | prepend: site.url }}" />
	<author>
		<name>{{ site.author }}</name>
		<email>{{ site.email }}</email>
	</author>
	<generator version="{{ jekyll.version }}">Jekyll</generator>{% for post in documents limit:10 %}
	<entry>
		<id>{{ site.url }}{{ site.baseurl }}{{ post.url }}</id>
		<title>{{ post.title | xml_escape }}</title>
		<author>
			<name>{{ site.author }}</name>
			<email>{{ site.email }}</email>
		</author>
		<updated>{{ post.date | date_to_xmlschema }}</updated>
		<link rel="alternate" type="text/html" href="{{ post.url | prepend: site.baseurl | prepend: site.url }}" />{% if post.description %}
		<summary>{{ post.description | strip | xml_escape }}</summary>{% endif %}
		<content type="html" xml:base="{{ post.url | absolute_url | xml_escape }}">
			{{ post.content | strip | xml_escape }}
		</content>{% for tag in post.tags %}
		<category term="{{ tag | xml_escape }}" />{% endfor %}{% for cat in post.categories %}
		<category term="{{ cat | xml_escape }}" />{% endfor %}
	</entry>{% endfor %}
</feed>