diff --git a/digitalglarus/templates/glarus_blog/includes/blog_meta.html b/digitalglarus/templates/glarus_blog/includes/blog_meta.html
index 24ca606a..b9e78570 100644
--- a/digitalglarus/templates/glarus_blog/includes/blog_meta.html
+++ b/digitalglarus/templates/glarus_blog/includes/blog_meta.html
@@ -1,26 +1,23 @@
{% load i18n thumbnail %}
-
+
-
+
{% if post.categories.exists %}
- {% for category in post.categories.all %}
- {% if category.slug %}
- - {{ category.name }}{% if not forloop.last %}, {% endif %}
- {% endif %}
- {% endfor %}
+ {% for category in post.categories.all %}
+ {% if category.slug %}
+ - {{ category.name }}{% if not forloop.last %}, {% endif %}
+ {% endif %}
+ {% endfor %}
{% endif %}
{% if post.tags.exists %}
- {% for tag in post.tags.all %}
- - {{ tag.name }}{% if not forloop.last %}, {% endif %}
- {% endfor %}
+ {% for tag in post.tags.all %}
+ - {{ tag.name }}{% if not forloop.last %}, {% endif %}
+ {% endfor %}
{% endif %}
-
\ No newline at end of file
+