diff --git a/_layouts/post.html b/_layouts/post.html
index 3b92f9715202dfe55116081ebfd46280aa1b97a5..8972cb02720cfb236f8e2477acd5f4b9b7dd64fc 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -3,6 +3,9 @@ layout: default
 ---
 <h1>{{ page.title }}</h1>
 <span class="time">{{ page.date | date_to_string }}</span>
+<span class="categories">
+    &raquo; {% for category in page.categories %}{{ category }}{% if forloop.last == false %}, {% endif %}{% endfor %}
+</span>
 
 <div class="content">
     <div class="post">{{ content }}</div>
diff --git a/css/main.css b/css/main.css
index f93d473cfa9dae0aebb0011f5203e862cb7718f7..29ea63d8c46407517d2a0d9bc217dcc5cc0d5fc9 100755
--- a/css/main.css
+++ b/css/main.css
@@ -31,7 +31,7 @@ hr {
  * Font and link declarations
  * //////////////////////////
  */
-span.time {
+span.time, span.categories {
     color: #ADADAD;
     margin-bottom: 5px;
     font-size: 11px;