diff options
author | HombreLaser <buran@silosneeded.com> | 2024-05-05 19:51:24 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-05-05 19:51:24 -0600 |
commit | 30c268fdabca62c7c4df6e8db7426666fc2be66a (patch) | |
tree | 8042bfd5d1ebee1ef492b9f1f8cac0e1c4c22438 /_includes/navigation_buttons.html | |
parent | bf2c057eece0e777036110526eb488b364dff108 (diff) |
Change interface
Diffstat (limited to '_includes/navigation_buttons.html')
-rw-r--r-- | _includes/navigation_buttons.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/_includes/navigation_buttons.html b/_includes/navigation_buttons.html new file mode 100644 index 0000000..5b2d8b0 --- /dev/null +++ b/_includes/navigation_buttons.html @@ -0,0 +1,18 @@ +<div class="column mt-2"> + <div class="flex-container"> + <div class="navigation-element"> + {% if page.next %} + <a class="button is-info" 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 }}"> + {% t post.previous %} + </a> + {% endif %} + </div> + </div> +</div> |