diff options
author | HombreLaser <sebastian-440@live.com> | 2024-05-07 19:07:51 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2024-05-07 19:07:51 -0600 |
commit | b709feebcfccddf991f04e15dc19aaec22fe69fc (patch) | |
tree | 0bb8575cba9d9612e04130504d4bf881e99311e4 /_includes/navigation_buttons.liquid | |
parent | a4c0692f8dbab80cf5c0b5644ec050322040c4e3 (diff) |
Add polyglot
Diffstat (limited to '_includes/navigation_buttons.liquid')
-rw-r--r-- | _includes/navigation_buttons.liquid | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_includes/navigation_buttons.liquid b/_includes/navigation_buttons.liquid index f3fc319..8a7d96b 100644 --- a/_includes/navigation_buttons.liquid +++ b/_includes/navigation_buttons.liquid @@ -2,15 +2,15 @@ <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 class="button is-info" rel="next" href="{{ page.next.url | relative_url }}"> + {{ site.data[site.active_lang].strings.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 class="button is-info" rel="prev" href="{{ page.previous.url | relative_url }}"> + {{ site.data[site.active_lang].strings.post.previous }} </a> {% endif %} </div> |