-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.atom.xml
More file actions
28 lines (28 loc) · 1.32 KB
/
feed.atom.xml
File metadata and controls
28 lines (28 loc) · 1.32 KB
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
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>{{ site.production_url | append: '/' }}</id>
<title>{{ site.title | xml_escape }}</title>
<link href="{{ site.production_url }}" />
<link href="{{ site.production_url }}{{ page.url }}" rel="self" />
<updated>{{ site.time | date: '%FT%T.000Z' }}</updated>
<author>
<name>{{ site.data.person.name | xml_escape }}</name>
</author>
<rights>Copyright {{ site.time | date: '%Y' }} {{ site.data.person.name | xml_escape }}</rights>{% for project in site.projects reversed %}
<entry>
<id>{{ site.production_url }}{{ project.id }}</id>
<title>{{ project.role | xml_escape }} at {{ project.title | xml_escape }}</title>
<published>{{ project.start_date | date: '%FT%T.' }}{{ forloop.index | prepend: '000' | slice: -3, 3 | append: 'Z' }}</published>
<updated>{{ project.start_date | date: '%FT%T.' }}{{ forloop.index | prepend: '000' | slice: -3, 3 | append: 'Z' }}</updated>
<content>
{{ project.role | escape }} at {{ project.title | xml_escape }}
{{ project.start_date }} - {{ project.end_date }}
{% for summary in project.summary %}
{{ summary | xml_escape }}{% endfor %}
Skills used: {{ project.skills | join: ', ' | xml_escape }}
</content>
</entry>{% endfor %}
</feed>