diff --git a/lib/site_template/_config.yml b/lib/site_template/_config.yml
index d9fdcfc0..15256bf7 100644
--- a/lib/site_template/_config.yml
+++ b/lib/site_template/_config.yml
@@ -1,5 +1,10 @@
+# Site settings
name: Dat site title tho
-markdown: redcarpet
-highlighter: pygments
-description: "Write an awesome description for your new site here. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
-url: "http://yourdomain.com"
+title: Your awesome title
+email: your-email@domain.com
+description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description."
+baseurl: "http://yourdomain.com"
+
+# Build settings
+markdown: kramdown
+permalinks: pretty
diff --git a/lib/site_template/_includes/footer.html b/lib/site_template/_includes/footer.html
index 6c5dae3e..9a286ece 100644
--- a/lib/site_template/_includes/footer.html
+++ b/lib/site_template/_includes/footer.html
@@ -2,19 +2,19 @@
-
Bart Simpson
+
{{ site.name }}
-
\ No newline at end of file
+
diff --git a/lib/site_template/_includes/head.html b/lib/site_template/_includes/head.html
index 9f676224..d5475615 100644
--- a/lib/site_template/_includes/head.html
+++ b/lib/site_template/_includes/head.html
@@ -4,9 +4,9 @@
{% if page.title %}{{ page.title }}{% else %}{{ site.name }}{% endif %}
-
+
-
+
-
\ No newline at end of file
+
diff --git a/lib/site_template/_includes/header.html b/lib/site_template/_includes/header.html
index 9c605cde..f8045cbe 100644
--- a/lib/site_template/_includes/header.html
+++ b/lib/site_template/_includes/header.html
@@ -2,7 +2,7 @@
-
\ No newline at end of file
+
diff --git a/lib/site_template/about/index.md b/lib/site_template/about.md
similarity index 87%
rename from lib/site_template/about/index.md
rename to lib/site_template/about.md
index 09ac935c..3ed64bb6 100644
--- a/lib/site_template/about/index.md
+++ b/lib/site_template/about.md
@@ -1,10 +1,11 @@
---
layout: page
title: About
+permalink: /about/
---
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](http://jekyllrb.com/)
You can find the source code for the Jekyll new theme at: [github.com/jglovier/jekyll-new](https://github.com/jglovier/jekyll-new)
-You can find the source code for Jekyll at [github.com/jekyll/jekyll](https://github.com/jekyll/jekyll)
\ No newline at end of file
+You can find the source code for Jekyll at [github.com/jekyll/jekyll](https://github.com/jekyll/jekyll)
diff --git a/lib/site_template/feed.xml b/lib/site_template/feed.xml
index 15b90dd6..252a0bd1 100644
--- a/lib/site_template/feed.xml
+++ b/lib/site_template/feed.xml
@@ -6,16 +6,16 @@ layout: none
{{ site.name | xml_escape }}{{ site.description | xml_escape }}
- {{ site.url }}
-
+ {{ site.baseurl }}
+
{% 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 }}
+ {{ post.url | prepend: site.baseurl }}
+ {{ post.url | prepend: site.baseurl }}
{% endfor %}
-
\ No newline at end of file
+
diff --git a/lib/site_template/index.html b/lib/site_template/index.html
index a14fd240..a9f5097c 100644
--- a/lib/site_template/index.html
+++ b/lib/site_template/index.html
@@ -8,10 +8,13 @@ layout: default
-
\ No newline at end of file
+
diff --git a/lib/site_template/projects/index.md b/lib/site_template/projects/index.md
deleted file mode 100644
index c4587134..00000000
--- a/lib/site_template/projects/index.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: page
-title: Projects
----
-
-Just a sample of another page that you could include for some purpose in the primary navigation.
-
-This could be a great place to list your own projects. But to get you started, here's some handy links:
-
-- [List of Jekyll-powered websites](https://github.com/jekyll/jekyll/wiki/Sites)
-- [Octopress, a Jekyll based blog framework](https://github.com/octopress/)
-- [Jekyll documentation](http://jekyllrb.com/)
-- [Jekyll source on GitHub](https://github.com/jekyll/jekyll)
-- [Available plugins](http://jekyllrb.com/docs/plugins/#available_plugins)
\ No newline at end of file