diff options
author | Alexander Færøy <ahf@0x90.dk> | 2015-02-06 17:44:00 +0100 |
---|---|---|
committer | Alexander Færøy <ahf@0x90.dk> | 2015-02-06 17:45:35 +0100 |
commit | 7910f3f4310c14542c0ec4b3cc95d04488b0ed7b (patch) | |
tree | e112bf38ee2dcffd04b92f5a8be9c95c2087c1cd | |
download | irssi.github.io-7910f3f4310c14542c0ec4b3cc95d04488b0ed7b.zip |
Initial import
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README.markdown | 4 | ||||
-rw-r--r-- | _config.yml | 10 | ||||
-rw-r--r-- | _layouts/nil.html | 1 | ||||
-rw-r--r-- | atom.xml | 25 |
5 files changed, 41 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ca35be0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_site diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..b61dda6 --- /dev/null +++ b/README.markdown @@ -0,0 +1,4 @@ +Irssi.org +========= + +Nothing to see here, yet ;-) diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..396d556 --- /dev/null +++ b/_config.yml @@ -0,0 +1,10 @@ +permalink: "/articles/:year/:month/:day/:title" +exclude: ["README.markdown"] +lsi: false +safe: true + +baseurl: "" +title: The Irssi Project +name: Irssi Core Team +email: staff@irssi.org +url: "http://irssi.github.io" diff --git a/_layouts/nil.html b/_layouts/nil.html new file mode 100644 index 0000000..cddd070 --- /dev/null +++ b/_layouts/nil.html @@ -0,0 +1 @@ +{{ content }} diff --git a/atom.xml b/atom.xml new file mode 100644 index 0000000..fb3aa9e --- /dev/null +++ b/atom.xml @@ -0,0 +1,25 @@ +--- +layout: nil +--- +<?xml version="1.0" encoding="utf-8"?> +<feed xmlns="http://www.w3.org/2005/Atom"> + <title>{{ site.title }}</title> + <link href="{{ site.url }}/atom.xml" rel="self"/> + <link href="{{ site.url }}/"/> + <updated>{{ site.time | date_to_xmlschema }}</updated> + <id>{{ site.url }}/</id> + <author> + <name>{{ site.name }}</name> + <email>{{ site.email }}</email> + </author> + + {% for post in site.posts %} + <entry> + <title>{{ post.title }}</title> + <link href="{{ site.url }}/{{ post.url }}"/> + <updated>{{ post.date | date_to_xmlschema }}</updated> + <id>{{ site.url }}/{{ post.id }}</id> + <content type="html">{{ post.content | xml_escape }}</content> + </entry> + {% endfor %} +</feed> |