diff --git a/_layouts/post.html b/_layouts/post.html
index b811de2..06421a1 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -12,20 +12,34 @@
{{ page.title }}
on {{ page.date | date_to_string }}.
+
+
{{ content }}
+
+
+
+
{% if page.comments %}
-
-
-
+
+
+
{% endif %}
diff --git a/_posts/2017-02-12-hello-world.md b/_posts/2017-02-12-hello-world.md
index b1913d9..52c814f 100644
--- a/_posts/2017-02-12-hello-world.md
+++ b/_posts/2017-02-12-hello-world.md
@@ -1,10 +1,11 @@
---
layout: post
title: "Hello, World!"
-date: 2017-02-12 15:36
+date: 2017-02-12
author: tommy_ip
+description: Why did we call ourselves the Krypton Chicken?
+tags: [general, KryptonChicken]
comments: true
-description: "Why did we call ourselves the Krypton Chicken?"
---
__*So why do we call ourselves "Krypton Chicken"?*__ We (the GCI 2016 winners) were
diff --git a/css/style.css b/css/style.css
index 3af1c4a..c791680 100644
--- a/css/style.css
+++ b/css/style.css
@@ -14,3 +14,35 @@ a:hover {
h1 {
font-size: 2em;
}
+
+.tags {
+ list-style: none;
+ margin: 0;
+ overflow: hidden;
+ padding: 0;
+}
+
+.tags li {
+ float: left;
+}
+
+.tag {
+ background: #eee;
+ border-radius: 3px;
+ color: #606c71;
+ display: inline-block;
+ height: 30px;
+ line-height: 30px;
+ padding: 0 12px 0 12px;
+ position: relative;
+ margin: 0 10px 10px 0;
+ text-decoration: none;
+ -webkit-transition: color 0.5s;
+}
+
+/* Un-comment this when implementing a page with filtered blog posts.
+.tag:hover {
+ background-color: #E91E63;
+ color: white;
+}
+*/