-
Notifications
You must be signed in to change notification settings - Fork 317
/
feed.xml
23 lines (23 loc) · 979 Bytes
/
feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Open Source Game Clones: New/Updated Games</title>
<subtitle>Games entries that have been added or updated in the last 30 days</subtitle>
<link href="https://osgameclones.com/feed.xml" rel="self" />
<updated>{{ updated.strftime('%Y-%m-%dT%H:%M:%SZ') }}</updated>
<id>https://osgameclones.com/</id>
<category term="games"/>
<category term="open source"/>
<category term="game clone"/>
{%- for names, meta, game in site.new_games.values() %}
<entry>
<title>{{ game.name | e }}</title>
<author>
<name>OSGC</name>
</author>
<id>https://osgameclones.com/game/{{ game.name | slugify }}</id>
<link href="https://osgameclones.com/{{ names[0] | slugify }}" />
<updated>{{ game.updated.strftime('%Y-%m-%dT%H:%M:%SZ') }}</updated>
<summary>{{ game.type }} of {{ ', '.join(names) }} {{ game.info | e }}</summary>
</entry>
{%- endfor %}
</feed>