Skip to content

Commit

Permalink
Merge pull request #35 from jose-zama/master
Browse files Browse the repository at this point in the history
Fixes #34 #36
  • Loading branch information
Panos Sakkos committed Oct 31, 2015
2 parents 4e10ea9 + 538b81b commit 07bb6ad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
16 changes: 7 additions & 9 deletions _includes/pagination.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,18 @@

<div class="pagination">

{% if paginator.previous_page and paginator.next_page%}
<h4>
<a href="{{site.baseurl}}{{ paginator.previous_page_path }}" class="previous">Newer Posts</a> <a href="{{site.baseurl}}{{ paginator.next_page_path }}" class="next">Older Posts</a>
</h4>
{% endif %}

<h4>

{% if paginator.previous_page %}
<h4><a href="{{site.baseurl}}{{ paginator.previous_page_path }}" class="previous">Newer Posts</a></h4>
<a href="{{site.baseurl}}{{ paginator.previous_page_path }}" class="previous">Newer Posts</a>
{% endif %}

{% if paginator.next_page %}
<h4><a href="{{site.baseurl}}{{ paginator.next_page_path }}" class="next">Older Posts</a></h4>
<a href="{{site.baseurl}}{{ paginator.next_page_path }}" class="next">Older Posts</a>
{% endif %}


</h4>

</div>

<!-- Pagination Links End -->
4 changes: 4 additions & 0 deletions css/grayscale.scss
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,10 @@ footer {
background: rgba($light, 0.2);
}

img {
max-width: 100%;
}

img::selection {
background: transparent;
}
Expand Down

0 comments on commit 07bb6ad

Please sign in to comment.