diff --git a/_config.yml b/_config.yml
index 7efd3de..0b9d808 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,3 +1,9 @@
+absolute: http://localhost:4000
+title: Rik @ St Andrews
+author: Rik Veenboer
+email: rik.veenboer@gmail.com
+disqus: boukefalos
+analytics: UA-46375339-1
gems: [jekyll-paginate]
markdown: kramdown
paginate: 7
diff --git a/_includes/base.html b/_includes/base.html
new file mode 100644
index 0000000..33ab376
--- /dev/null
+++ b/_includes/base.html
@@ -0,0 +1,6 @@
+{% assign base = '' %}
+{% assign depth = page.url | split: '/' | size | minus: 1 %}
+{% if depth == 1 %}{% assign base = '.' %}
+{% elsif depth == 2 %}{% assign base = '..' %}
+{% elsif depth == 3 %}{% assign base = '../..' %}
+{% elsif depth == 4 %}{% assign base = '../../..' %}{% endif %}
\ No newline at end of file
diff --git a/_includes/disqus.html b/_includes/disqus.html
index 1171150..5a0948d 100644
--- a/_includes/disqus.html
+++ b/_includes/disqus.html
@@ -1,10 +1,10 @@
diff --git a/_includes/footer.html b/_includes/footer.html
index 3e5d28c..726b67b 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,8 +1,7 @@
diff --git a/_includes/header.html b/_includes/header.html
index ed0020d..6d4b937 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -3,17 +3,13 @@
- {% if page.title != "Home" %}{{ page.title }} – {% endif %}Danny Berger
+ {% if page.title != "Home" %}{{ page.title }} – {% endif %}{{ site.title }}
-
-
- {% if page.path %}
-
- {% endif %}
+
{% if page.description %}
@@ -25,58 +21,32 @@
-
+
-
-
+
+
{% if page.description %}
{% endif %}
-
-
-
-
-
- {% if page.description %}
-
- {% endif %}
- {% if 'gallery-photo' == page.layout %}
-
-
- {% else %}
-
- {% if page.primary_image %}
-
- {% endif %}
- {% endif %}
-
-
-

-
+
{% if page.print_blurb %}
{% endif %}
diff --git a/_includes/icon-github.html b/_includes/icon-github.html
new file mode 100644
index 0000000..e501a16
--- /dev/null
+++ b/_includes/icon-github.html
@@ -0,0 +1 @@
+{% include icon-github.svg %}{{ include.username }}
diff --git a/_includes/icon-github.svg b/_includes/icon-github.svg
new file mode 100644
index 0000000..4422c4f
--- /dev/null
+++ b/_includes/icon-github.svg
@@ -0,0 +1 @@
+
diff --git a/_includes/icon-twitter.html b/_includes/icon-twitter.html
new file mode 100644
index 0000000..e623dbd
--- /dev/null
+++ b/_includes/icon-twitter.html
@@ -0,0 +1 @@
+{{ include.username }}
diff --git a/_includes/icon-twitter.svg b/_includes/icon-twitter.svg
new file mode 100644
index 0000000..dcf660e
--- /dev/null
+++ b/_includes/icon-twitter.svg
@@ -0,0 +1 @@
+
diff --git a/_layouts/page.html b/_layouts/page.html
new file mode 100644
index 0000000..ce233ad
--- /dev/null
+++ b/_layouts/page.html
@@ -0,0 +1,14 @@
+---
+layout: default
+---
+
+
+
+
+
+ {{ content }}
+
+
+
diff --git a/blog/atom.xml b/blog/atom.xml
index a8e8ab7..ae870d8 100644
--- a/blog/atom.xml
+++ b/blog/atom.xml
@@ -1,22 +1,23 @@
---
layout: null
---
+{% include base.html %}
- http://dpb587.me/
- Danny Berger
-
-
+ {{ site.baseurl }}/
+ {{ site.author }}
+
+
{{ site.time|date_to_xmlschema }}
- Danny Berger
- dpb587@gmail.com
+ {{ site.author }}
+ {{ site.email }}
{% for post in site.posts %}
- http://dpb587.me{{ post.id }}
+ {{ site.absolute }}/{{ post.id }}
{{ post.title }}
-
+
{{ post.date|date_to_xmlschema }}
{{ post.content|xml_escape }}
diff --git a/blog/index.html b/blog/index.html
index 7fabb81..b53b9c8 100644
--- a/blog/index.html
+++ b/blog/index.html
@@ -2,7 +2,6 @@
title: Blog Summary
layout: default
---
-
{% for post in site.posts %}