Skip to content

Commit

Permalink
Fix liquid syntax errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaspar Naaber committed May 10, 2016
1 parent 3444d17 commit 0bd3778
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion layouts/blog.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<div class="blog">
<div class="blog-date"><span>{{ article.created_at | format_date:"%d" }}</span><br />{{ article.created_at | format_date:"%b" }}</div>
<div class="blog-inner">
<h1><a href="{{ article.url }}">{{ article.title }} <span class="mobile mobile-date">{{article.created_at | format_date="short" }}</span></a></h1>
<h1><a href="{{ article.url }}">{{ article.title }} <span class="mobile mobile-date">{{article.created_at | format_date: "short" }}</span></a></h1>

<div class="blog-content clearfix content-hyphenate">
{{ article.excerpt }} <a href="{{ article.url }}">{{"read_more"|lc}}</a>
Expand Down
2 changes: 1 addition & 1 deletion layouts/blog_article.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div class="blog">
<div class="blog-date"><span>{{ article.created_at | format_date:"%d" }}</span><br />{{ article.created_at | format_date:"%b" }}</div>
<div class="blog-inner">
<h1>{% editable article.title plain="true" %} <span class="mobile mobile-date">{{article.created_at | format_date="short" }}</span></h1>
<h1>{% editable article.title plain="true" %} <span class="mobile mobile-date">{{article.created_at | format_date: "short" }}</span></h1>

<div class="blog-content clearfix content-hyphenate">
{% editable article.excerpt %}
Expand Down

0 comments on commit 0bd3778

Please sign in to comment.