Skip to content

Commit

Permalink
fix(template): avoid link indicators being removed by html-minifier
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Mar 17, 2016
1 parent 02fafb2 commit 07ef24f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _app/_includes/themes/curtana/includes/page-item.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h1>

<!-- External link indicator -->
{% if post.link %}
<a href="{{ post.link }}" class=external><span class="dot" {% if site.data.curtana.colorful_list %}{{ post_link_bg }}{% endif %}></span></a>
<a href="{{ post.link }}" class=external><span class="dot" {% if site.data.curtana.colorful_list %}{{ post_link_bg }}{% endif %}> </span></a>
{% endif %}
</h1>
</section>
2 changes: 1 addition & 1 deletion _app/_includes/themes/curtana/layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{{ page.title }}
{{ amsf_page_heading_type_svg }}
{% else %}
{{ page.title }}<span class="dot dot--post"></span>
{{ page.title }}<span class="dot dot--post"> </span>
{% endif %}
{% endcapture %}

Expand Down

0 comments on commit 07ef24f

Please sign in to comment.