feed.xml 979 B

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