diff --git a/_includes/blog_sidebar.html b/_includes/blog_sidebar.html
index 9e8d88fdf..57995fe7a 100644
--- a/_includes/blog_sidebar.html
+++ b/_includes/blog_sidebar.html
@@ -36,7 +36,22 @@
{{ post.title }}
{% endfor %}
- See all posts in the archive or browse by category!
+ See all posts in the archive
+
+ {% assign categories = site.categories | sort %}
+
diff --git a/_layouts/post.html b/_layouts/post.html
index b2608c048..f9786691a 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -23,7 +23,7 @@ {{ page.title }}
and
{% else %}
{% if forloop.first == false %}
- ,
+ ,
{% endif %}
{% endif %}
{% if category == 'blog' %}
diff --git a/assets/stylesheets/blog.scss b/assets/stylesheets/blog.scss
index c2de71223..2daa1653c 100644
--- a/assets/stylesheets/blog.scss
+++ b/assets/stylesheets/blog.scss
@@ -99,3 +99,7 @@
width: 200px
}
}
+
+.cat-comma {
+ margin-left: -2px;
+}