diff options
author | HombreLaser <sebastian-440@live.com> | 2024-05-07 11:45:46 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2024-05-07 11:45:46 -0600 |
commit | a4c0692f8dbab80cf5c0b5644ec050322040c4e3 (patch) | |
tree | 3ea2f9dc891a13bbcf8b8980c5bf6f2ebb0b9dc2 /_includes/navigation_buttons.liquid | |
parent | acc3c3caf7029f92a2b146c29a510181c1b42a65 (diff) |
Add dark theme
Diffstat (limited to '_includes/navigation_buttons.liquid')
-rw-r--r-- | _includes/navigation_buttons.liquid | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/_includes/navigation_buttons.liquid b/_includes/navigation_buttons.liquid new file mode 100644 index 0000000..f3fc319 --- /dev/null +++ b/_includes/navigation_buttons.liquid @@ -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" rel="next" href="{{ page.next.url | relative_url }}"> + {% t post.next %} + </a> + {% endif %} + </div> + <div class="navigation-element end-justified"> + {% if page.previous %} + <a class="button is-info" rel="prev" href="{{ page.previous.url | relative_url }}"> + {% t post.previous %} + </a> + {% endif %} + </div> + </div> +</div> |