diff --git a/_layouts/tag_page.html b/_layouts/tag_page.html
index 24fe086..8bc65da 100644
--- a/_layouts/tag_page.html
+++ b/_layouts/tag_page.html
@@ -1,33 +1,19 @@
-
-
-
-
-
-
-{% include head.html %}
-
-
-
-
-{% include browser-upgrade.html %}
-{% include navigation.html %}
-
-
-
-
-
-
- {% for post in page.posts %}
- - {{ post.title }} ({{ post.date | date_to_string }} | Tags: {{ post | tags }})
- {% endfor %}
-
-
-
-
-
-
-
\ No newline at end of file
+---
+layout: page
+comments: false
+show_meta: false
+breadcrumb: true
+header:
+ image_fullwidth: "banner.jpg"
+sidebar: right
+---
+
+
Posts tagged as '{{ page.title }}'
+
+
+ {% for post in page.posts %}
+ - {{ post.title }} ({{ post.date | date_to_string }})
+ {% endfor %}
+
+
+
diff --git a/tags/index.html b/tag/index.html
similarity index 70%
rename from tags/index.html
rename to tag/index.html
index 4a833d3..f50c141 100644
--- a/tags/index.html
+++ b/tag/index.html
@@ -3,19 +3,20 @@ layout: page
title: Tag Archive
description: "An archive of posts sorted by tag."
comments: false
+breadcrumb: true
---
{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
{% assign tags_list = site_tags | split:',' | sort %}
-
+
-{% for item in (0..site.tags.size) %}{% unless forloop.last %}
+
-{% endunless %}{% endfor %}
+