Search and stuff

This commit is contained in:
2026-03-11 18:58:42 -05:00
parent 4665a00bc7
commit a5316f1a69
43 changed files with 422 additions and 106 deletions

View File

@@ -8,19 +8,23 @@ pagination:
permalink: "prior-thoughts/{% if pagination.pageNumber > 0 %}page-{{ pagination.pageNumber + 1 }}/{% endif %}index.html"
paginationRootDir: prior-thoughts
---
<h1>Prior thoughts:</h1>
<div data-pagefind-body>
{% set postsCount = pagination.items | length %}
{% if postsCount > 0 %}
{% set postslist = pagination.items %}
{% set showPostListHeader = false %}
{% include "statusList.njk" %}
{% else %}
<p>Nothings here yet!</p>
{% endif %}
<h1>Prior thoughts:</h1>
{% include "permalinkButtons.njk" %}
{% set postsCount = pagination.items | length %}
{% if postsCount > 0 %}
{% set postslist = pagination.items %}
{% set showPostListHeader = false %}
{% include "statusList.njk" %}
{% else %}
<p>Nothings here yet!</p>
{% endif %}
<a href="/status/">
<button type="button">Latest »</button>
</a>
{% include "permalinkButtons.njk" %}
<a href="/status/">
<button type="button">Latest »</button>
</a>
</div>