Files
hobokenchicken 49957aa036 Resolve merge conflicts in posts/index.html and categories/index.html
- Keep Jekyll template versions for dynamic pagination
- Remove static HTML versions that were generated
- Ensure consistent use of Jekyll pagination and categories
2026-04-09 15:34:55 -04:00

23 lines
684 B
HTML

---
layout: default
title: d@n tech posts
pagination:
enabled: true
---
<h2>Posts</h2>
{% for post in paginator.posts %}
<span class="post-item"><span class="mobile-hide"> {{ post.date | date: '%Y-%m-%d' }} >> </span><a href="{{ post.url }}">{{ post.title }}</a><span class="float-right mobile-hide">{{ post.categories }}</span></span>
{% endfor %}
<div class="post-nav">
{% if paginator.total_pages > 1 %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}">&lt;- Older</a>
{% endif %}
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}">Newer -&gt;</a>
{% endif %}
{% endif %}
</div>