Files
ghost.sori.studio/partials/post/post-navigation.hbs

15 lines
437 B
Handlebars

<nav class="post-navigation">
{{#prev_post}}
<a class="post-navigation__link" href="{{url}}">
<small>Previous post</small>
<strong>{{title}}</strong>
</a>
{{/prev_post}}
{{#next_post}}
<a class="post-navigation__link post-navigation__link--next" href="{{url}}">
<small>Next post</small>
<strong>{{title}}</strong>
</a>
{{/next_post}}
</nav>