Skip to content

Commit

Permalink
Create atom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Idadelveloper authored Apr 8, 2020
1 parent c81f7dc commit 1d9431f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions blog/atom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
layout: feed
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

<title>Ida Delphine's Blog</title>
<link href="http://Idadelveloper.github.io/blog/atom.xml" rel="self"/>
<link href="http://Idadelveloper.github.io/blog"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://Idadelveloper.github.io/blog</id>
<author>
<name>Ida Delphine</name>
<email>[email protected]</email>
</author>

{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://Idadelveloper.github.io{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://Idadelveloper.github.io{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}

</feed>

0 comments on commit 1d9431f

Please sign in to comment.