Updated Google custom search
[ghost-theme-willow.git] / partials / pagination.hbs
1 <div class="c-post-pagination">
2 {{#if prev}}
3 <a class="c-post-pagination__item" href="{{page_url prev}}">
4 &larr; Previous Page
5 </a>
6 {{/if}}
7
8 {{#if next}}
9 <a class="c-post-pagination__item c-post-pagination__item--older" href="{{page_url next}}">
10 Next Page &rarr;
11 </a>
12 {{/if}}
13 </div>