diff --git a/_config.yml b/_config.yml
index 88bdb66..21ddc3d 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,5 +1,9 @@
name: Tyler Hallada - Blog
+description: Musings on technology, literature, and interesting topics
+url: http://hallada.net/blog
markdown: redcarpet
pygments: true
paginate: 10
paginate_path: "blog/page:num"
+gems:
+ - jekyll-redirect-from
diff --git a/_layouts/default.html b/_layouts/default.html
index ad24df7..ebccc08 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -23,6 +23,9 @@
+
+
+
diff --git a/_layouts/home.html b/_layouts/home.html
index 4a65464..24fc811 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -20,6 +20,9 @@
+
+
+
diff --git a/feed.xml b/feed.xml
new file mode 100644
index 0000000..f6b6d1c
--- /dev/null
+++ b/feed.xml
@@ -0,0 +1,22 @@
+---
+layout: none
+redirect_from: "/rss"
+---
+
+
+
+ {{ site.name | xml_escape }}
+ {% if site.description %}{{ site.description | xml_escape }}{% endif %}
+ {{ site.url }}
+
+ {% for post in site.posts limit:10 %}
+ -
+ {{ post.title | xml_escape }}
+ {{ post.content | xml_escape }}
+ {{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}
+ {{ site.url }}{{ post.url }}
+ {{ site.url }}{{ post.url }}
+
+ {% endfor %}
+
+