mirror of
https://github.com/arsenetar/arsenetar.github.io.git
synced 2026-03-20 11:21:39 +00:00
Start Migration to Jekyll
Migrating blog to Jekyll to make things easier in the log run.
This commit is contained in:
32
atom.xml
Normal file
32
atom.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
layout: nil
|
||||
---
|
||||
<?xml version="1.0"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
|
||||
<title>Your Website</title>
|
||||
<link href="{{ site.url }}"/>
|
||||
<link type="application/atom+xml" rel="self" href="{{ site.url }}/atom.xml"/>
|
||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}</id>
|
||||
<author>
|
||||
<name>{{ site.author }}</name>
|
||||
<email>{{ site.email }}</email>
|
||||
</author>
|
||||
|
||||
{% for post in site.posts %}
|
||||
<entry>
|
||||
<id>{{ site.url }}{{ post.id }}</id>
|
||||
<link type="text/html" rel="alternate" href="{{ site.url }}{{ post.url }}"/>
|
||||
<title>{{ post.title }}</title>
|
||||
<published>{{ post.date | date_to_xmlschema }}</published>
|
||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||
<author>
|
||||
<name>{{ site.author }}</name>
|
||||
<uri>{{ site.url }}/author.html</uri>
|
||||
</author>
|
||||
<content type="html">{{ post.content | xml_escape }}</content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
|
||||
</feed>
|
||||
Reference in New Issue
Block a user