Skip to content

Commit

Permalink
Bug: Remove redundant symbols. iissnan#1494
Browse files Browse the repository at this point in the history
  • Loading branch information
iissnan authored Mar 10, 2017
1 parent d05ca32 commit 3cf9c83
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions layout/_macro/post.swig
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,12 @@
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
{% if theme.post_wordcount.item_text %}
<span class="post-meta-item-text">{{ __('post.wordcount') }}</span>
{% endif %}
<span title="{{ __('post.wordcount') }}" }}">
{{ wordcount(post.content) }}
</span>
{% if theme.post_wordcount.item_text %}
<span class="post-meta-item-text">{{ __('post.wordcount') }}</span>
{% endif %}
<span title="{{ __('post.wordcount') }}">
{{ wordcount(post.content) }}
</span>
{% endif %}

{% if theme.post_wordcount.wordcount and theme.post_wordcount.min2read %}
Expand All @@ -212,12 +212,12 @@
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
{% if theme.post_wordcount.item_text %}
<span class="post-meta-item-text">{{ __('post.min2read') }}</span>
{% endif %}
<span title="{{ __('post.min2read') }}" }}">
{{ min2read(post.content) }}
</span>
{% if theme.post_wordcount.item_text %}
<span class="post-meta-item-text">{{ __('post.min2read') }}</span>
{% endif %}
<span title="{{ __('post.min2read') }}" }}">
{{ min2read(post.content) }}
</span>
{% endif %}
</div>
{% endif %}
Expand Down

0 comments on commit 3cf9c83

Please sign in to comment.