summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--README.markdown4
-rw-r--r--_config.yml10
-rw-r--r--_layouts/nil.html1
-rw-r--r--atom.xml25
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>