Update buttons on index

This commit is contained in:
Nathan Upchurch 2024-09-25 13:03:36 -05:00
parent 75aa8e4a33
commit b7e997515e

View File

@ -14,9 +14,9 @@ numberOfNowPostsToShow: 1
{% set postslistCounter = postsCount %}
{% set showPostListHeader = false %}
{% include "postslist.njk" %}
<a class="link-button" href="/now/">
<a href="/now/">
<button type="button">
See more on the “now” page
See more on the “now” page »
</button>
</a>
</div>
@ -30,9 +30,9 @@ numberOfNowPostsToShow: 1
{% set morePosts = postsCount - numberOfLatestPostsToShow %}
{% if morePosts > 0 %}
<a class="link-button" href="/blog/">
<a href="/blog/">
<button type="button">
See {{ morePosts }} more post{% if morePosts != 1 %}s{% endif %} in the blog
See {{ morePosts }} more post{% if morePosts != 1 %}s{% endif %} in the blog »
</button>
</a>
{% endif %}