diff options
author | HombreLaser <buran@silosneeded.com> | 2024-05-05 20:17:40 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-05-05 20:17:40 -0600 |
commit | 71dc8f91b52534e54da80d87a595479b571d6a0f (patch) | |
tree | 24535387b444f732c16e704a1c8bf529d1074c8d /_includes | |
parent | 30c268fdabca62c7c4df6e8db7426666fc2be66a (diff) |
Improve navigation
Diffstat (limited to '_includes')
-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 %} |