From 6cfa082ce788d9eb15c9291420a948d0b98a535d Mon Sep 17 00:00:00 2001 From: Holger Reinhardt Date: Sat, 30 Jan 2016 23:16:33 +0100 Subject: [PATCH] try bold to highlight category and tags --- _layouts/post.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/post.html b/_layouts/post.html index f859308..22a8a53 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -13,7 +13,7 @@ layout: default {% endif %} {% endfor %} {% if category %} - {% capture category_content %} in {{ category.name }}{% endcapture %} + {% capture category_content %} in {{ category.name }}{% endcapture %} {% endif %} {% else %} {% assign category_content = '' %} @@ -21,7 +21,7 @@ layout: default {% if page.tags.size > 0 %} - {% capture tags_content %} with tags {% endcapture %} + {% capture tags_content %} tagged with {% endcapture %} {% for post_tag in page.tags %} {% for data_tag in site.data.tags %} {% if data_tag.slug == post_tag %} @@ -29,7 +29,7 @@ layout: default {% endif %} {% endfor %} {% if tag %} - {% capture tags_content_temp %}{{ tags_content }}{{ tag.name }}{% if forloop.last == false %}, {% endif %}{% endcapture %} + {% capture tags_content_temp %}{{ tags_content }}{{ tag.name }}{% if forloop.last == false %}, {% endif %}{% endcapture %} {% assign tags_content = tags_content_temp %} {% endif %} {% endfor %}