diff options
-rw-r--r-- | _includes/navigation_buttons.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/navigation_buttons.html b/_includes/navigation_buttons.html index 5b2d8b0..9ad2500 100644 --- a/_includes/navigation_buttons.html +++ b/_includes/navigation_buttons.html @@ -2,14 +2,14 @@ <div class="flex-container"> <div class="navigation-element"> {% if page.next %} - <a class="button is-info" href="{{ page.next.url | relative_url }}"> + <a class="button is-info" rel="next" href="{{ page.next.url | relative_url }}"> {% t post.next %} </a> {% endif %} </div> <div cylass="navigation-element end-justified"> {% if page.previous %} - <a class="button is-info" href="{{ page.previous.url | relative_url }}"> + <a class="button is-info" rel="prev" href="{{ page.previous.url | relative_url }}"> {% t post.previous %} </a> {% endif %} |