diff --git a/archives.html b/archives.html
index 75555c2..668b1fd 100644
--- a/archives.html
+++ b/archives.html
@@ -1,19 +1,24 @@
---
-layout: category
-category-name: entertainment
-title: Entertainment Posts
-permalink: /entertainment/
+layout: default
---
-
- {% if site.categories.entertainment.size > 0 %}
-
- {% for post in site.categories.entertainment %}{% include post-item.html %}
+ {% if site.posts.size > 0 %}
+ {% for post in site.posts %}
+ {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
+ {% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
+ {% if forloop.first %}
+ {{this_year}}
+
+ {% else %}
+ {% if this_year != next_year %}
+ {{next_year}}
+ {% endif %}
+ {% endif %}
{% endfor %}
-
- {% else %}
-
No posts to show.
+
+
{% endif %}