25 lines
785 B
XML
25 lines
785 B
XML
---
|
|
layout: nil
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<id>http://dpb587.me/</id>
|
|
<title>Danny Berger</title>
|
|
<link href="http://dpb587.me/blog/atom.xml" rel="self"/>
|
|
<link href="http://dpb587.me/"/>
|
|
<updated>{{ site.time|date_to_xmlschema }}</updated>
|
|
<author>
|
|
<name>Danny Berger</name>
|
|
<email>dpb587@gmail.com</email>
|
|
</author>
|
|
{% for post in site.posts %}
|
|
<entry>
|
|
<id>http://dpb587.me{{ post.id }}</id>
|
|
<title>{{ post.title }}</title>
|
|
<link href="http://dpb587.me{{ post.url }}"/>
|
|
<updated>{{ post.date|date_to_xmlschema }}</updated>
|
|
<content type="html">{{ post.content|xml_escape }}</content>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed>
|