mirror of
https://github.com/LeuisKen/leuisken.github.io.git
synced 2026-01-25 14:43:04 +00:00
27 lines
743 B
XML
27 lines
743 B
XML
---
|
|
layout: nil
|
|
title : Atom Feed
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title>{{ site.title }}</title>
|
|
<link href="http://{{ site.domain }}/atom.xml" rel="self"/>
|
|
<link href="http://{{ site.domain }}"/>
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
<author>
|
|
<name>{{ site.author }}</name>
|
|
<email>{{ site.email }}</email>
|
|
</author>
|
|
|
|
{% for post in site.posts %}
|
|
<entry>
|
|
<title>{{ post.title }}</title>
|
|
<link href="http://{{ site.domain }}{{ post.url }}"/>
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
<id>{{ site.production_url }}{{ post.id }}</id>
|
|
<content type="html">{{ post.content | xml_escape }}</content>
|
|
</entry>
|
|
{% endfor %}
|
|
|
|
</feed> |