Skip to content

Commit

Permalink
CSS: rename post-more-link on post-button. (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-nginx authored Dec 26, 2016
1 parent eed90a3 commit 0da0509
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions layout/_macro/post.swig
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
{% if post.description and theme.excerpt_description %}
{{ post.description }}
<!--noindex-->
<div class="post-more-link text-center">
<div class="post-button text-center">
<a class="btn" href="{{ url_for(post.path) }}">
{{ __('post.read_more') }} &raquo;
</a>
Expand All @@ -243,7 +243,7 @@
{% elif post.excerpt %}
{{ post.excerpt }}
<!--noindex-->
<div class="post-more-link text-center">
<div class="post-button text-center">
<a class="btn" href="{{ url_for(post.path) }}{% if theme.scroll_to_more %}#more{% endif %}" rel="contents">
{{ __('post.read_more') }} &raquo;
</a>
Expand All @@ -254,7 +254,7 @@
{{ content.substring(0, theme.auto_excerpt.length) }}
{% if content.length > theme.auto_excerpt.length %}...{% endif %}
<!--noindex-->
<div class="post-more-link text-center">
<div class="post-button text-center">
<a class="btn" href="{{ url_for(post.path) }}{% if theme.scroll_to_more %}#more{% endif %}" rel="contents">
{{ __('post.read_more') }} &raquo;
</a>
Expand Down

0 comments on commit 0da0509

Please sign in to comment.