mirror of
https://github.com/arsenetar/arsenetar.github.io.git
synced 2026-03-20 11:21:39 +00:00
Update to Initial Skeleton for Jekyll
Update a bunch of files to get ready for Jekyll.
This commit is contained in:
32
atom.xml
32
atom.xml
@@ -1,31 +1,35 @@
|
||||
---
|
||||
layout: nil
|
||||
---
|
||||
<?xml version="1.0"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
|
||||
|
||||
<title>Your Website</title>
|
||||
<link href="{{ site.url }}"/>
|
||||
<link type="application/atom+xml" rel="self" href="{{ site.url }}/atom.xml"/>
|
||||
<title type="text">{{ site.title }}</title>
|
||||
<generator uri="http://jekyllrb.com/">Jekyll</generator>
|
||||
<link rel="self" type="application/atom+xml" href="{{ site.url }}/atom.xml"/>
|
||||
<link rel="alternate" type="text/html" href="{{ site.url }}"/>
|
||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}</id>
|
||||
<id>{{ site.url }}/</id>
|
||||
<author>
|
||||
<name>{{ site.author }}</name>
|
||||
<email>{{ site.email }}</email>
|
||||
<name>{{ site.owner.name }}</name>
|
||||
<uri>{{ site.url }}/</uri>
|
||||
<email>{{ site.owner.email }}</email>
|
||||
</author>
|
||||
|
||||
{% for post in site.posts %}
|
||||
{% for post in site.posts limit:20 %}
|
||||
<entry>
|
||||
<id>{{ site.url }}{{ post.id }}</id>
|
||||
<link type="text/html" rel="alternate" href="{{ site.url }}{{ post.url }}"/>
|
||||
<title>{{ post.title }}</title>
|
||||
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
||||
<published>{{ post.date | date_to_xmlschema }}</published>
|
||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||
<updated>{% if post.modified %}{{ post.modified | to_xmlschema }}T00:00:00-00:00{% else %}{{ post.date | date_to_xmlschema }}{% endif %}</updated>
|
||||
<author>
|
||||
<name>{{ site.author }}</name>
|
||||
<uri>{{ site.url }}/author.html</uri>
|
||||
<name>{{ site.owner.name }}</name>
|
||||
<uri>{{ site.url }}/</uri>
|
||||
<email>{{ site.owner.email }}</email>
|
||||
</author>
|
||||
<content type="html">{{ post.content | xml_escape }}</content>
|
||||
<content type="html">{{ post.content | xml_escape }}
|
||||
<p><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a> was originally published by {{ site.owner.name }} at <a href="{{ site.url }}/">{{ site.title }}</a> on {{ post.date | date: "%B %d, %Y" }}.</p></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user