Skip to content

Commit

Permalink
Fix pagination link
Browse files Browse the repository at this point in the history
  • Loading branch information
hanju-jo committed Oct 8, 2017
1 parent 1b308bf commit bf1f19a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ <h1>{{ page.title }}</h1>
<div class="pagination">
{% if page.previous.url %}
<span class="prev" >
<a href="{{ page.previous.url }}">
<a href="{{ site.url }}{{ site.baseurl }}{{ page.previous.url }}">
&#xE000; {{ page.previous.title }}
</a>
</span>
{% endif %}
{% if page.next.url %}
<span class="next" >
<a href="{{ page.next.url }}">
<a href="{{ site.url }}{{ site.baseurl }}{{ page.next.url }}">
{{ page.next.title }} &#xE001;
</a>
</span>
Expand Down

0 comments on commit bf1f19a

Please sign in to comment.