1
0
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:
2014-01-02 00:49:38 -05:00
parent 6f41a9f87a
commit eba3262d55
41 changed files with 3110 additions and 35 deletions

View File

@@ -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 }}
&lt;p&gt;&lt;a href=&quot;{{ site.url }}{{ post.url }}&quot;&gt;{{ post.title }}&lt;/a&gt; was originally published by {{ site.owner.name }} at &lt;a href=&quot;{{ site.url }}/&quot;&gt;{{ site.title }}&lt;/a&gt; on {{ post.date | date: "%B %d, %Y" }}.&lt;/p&gt;</content>
</entry>
{% endfor %}