Skip to content

Commit

Permalink
Merge pull request #1 from aldialimucaj/master
Browse files Browse the repository at this point in the history
Fix categories listing to fit YAML sequences
  • Loading branch information
drvy committed May 13, 2015
2 parents 62831ab + 0f37f95 commit 7a10b64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _posts/2015-01-03-minimal-block-jekyll.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: post
title: "minimal-block - A minimalistic responsive Jekyll theme"
date: 2015-01-03 00:00:00
categories: jekyll,themes
categories: [jekyll, themes]
tags: omg,shit
shortUrl: http://goo.gl/JhfZT9
---
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% for post in paginator.posts %}
<article class="module color-3">
<h2><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<span class="category">{{ post.categories }}</span>
<span class="category">{{ post.categories | array_to_sentence_string }}</span>
<p>{{ post.excerpt | strip_html | truncate: 250 }}</p>
</article>
{% endfor %}
Expand Down

0 comments on commit 7a10b64

Please sign in to comment.