Files
indiekit-blog/blog.njk
svemagie 7d497eb7f2 style: apply Gruvbox darkMuted/lightMuted accent palette
Replace generic Tailwind color classes (red/amber/green/sky/purple/
indigo/teal) with Gruvbox neutral and bright hex values, keeping
post-type colour coding intact but muted:

  like      → red     #cc241d / #fb4934
  bookmark  → yellow  #d79921 / #fabd2f
  repost    → green   #98971a / #b8bb26
  reply     → aqua    #689d6a / #8ec07c
  photo     → purple  #b16286 / #d3869b
  article   → blue    #458588 / #83a598
  note      → aqua-f  #427b58 / #8ec07c

Garden stage badges also migrated from generic Tailwind colours
to Gruvbox rgba tints and hex text/border values.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-19 17:05:42 +01:00

403 lines
21 KiB
Plaintext

---
layout: layouts/base.njk
title: Blog
withSidebar: true
pagination:
data: collections.listedPosts
size: 20
alias: paginatedPosts
permalink: "blog/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber + 1 }}/{% endif %}"
---
<div class="h-feed">
<div class="flex flex-wrap items-center gap-4 mb-2">
<h1 class="text-2xl sm:text-3xl font-bold text-surface-900 dark:text-surface-100">Blog</h1>
{% set sparklineSvg = collections.listedPosts | postingFrequency %}
{% if sparklineSvg %}
<div class="flex-1 min-w-0 text-[#b57614] dark:text-[#fabd2f]">{{ sparklineSvg | safe }}</div>
{% endif %}
</div>
<p class="text-surface-600 dark:text-surface-400 mb-6 sm:mb-8">
All posts including articles and notes.
<span class="text-sm">({{ collections.listedPosts.length }} total)</span>
</p>
{% if paginatedPosts.length > 0 %}
<nav class="flex flex-wrap gap-2 mb-6" aria-label="Filter by post type">
<a href="/blog/" class="px-3 py-1.5 text-sm font-medium rounded-full bg-accent-600 text-white dark:bg-accent-700">All Posts <span class="opacity-75">({{ collections.listedPosts.length }})</span></a>
{% for pt in enabledPostTypes %}
{% set collName = pt.label | lower %}
<a href="{{ pt.path }}" class="px-3 py-1.5 text-sm font-medium rounded-full bg-surface-100 dark:bg-surface-800 text-surface-600 dark:text-surface-300 hover:bg-surface-200 dark:hover:bg-surface-700 border border-surface-200 dark:border-surface-700 transition-colors">{{ pt.label }}{% if collections[collName] %} <span class="text-surface-600 dark:text-surface-400">({{ collections[collName].length }})</span>{% endif %}</a>
{% endfor %}
</nav>
<ul class="post-list">
{% for post in paginatedPosts %}
{# Detect post type from frontmatter properties #}
{% set likedUrl = post.data.likeOf or post.data.like_of %}
{% set bookmarkedUrl = post.data.bookmarkOf or post.data.bookmark_of %}
{% set repostedUrl = post.data.repostOf or post.data.repost_of %}
{% set replyToUrl = post.data.inReplyTo or post.data.in_reply_to %}
{% set hasPhotos = post.data.photo and post.data.photo.length %}
{% set postCW = post.data.contentWarning or post.data.content_warning %}
{% set borderClass = "" %}
{% if likedUrl %}
{% set borderClass = "border-l-[3px] border-l-[#cc241d] dark:border-l-[#fb4934]" %}
{% elif bookmarkedUrl %}
{% set borderClass = "border-l-[3px] border-l-[#d79921] dark:border-l-[#fabd2f]" %}
{% elif repostedUrl %}
{% set borderClass = "border-l-[3px] border-l-[#98971a] dark:border-l-[#b8bb26]" %}
{% elif replyToUrl %}
{% set borderClass = "border-l-[3px] border-l-[#689d6a] dark:border-l-[#8ec07c]" %}
{% elif hasPhotos %}
{% set borderClass = "border-l-[3px] border-l-[#b16286] dark:border-l-[#d3869b]" %}
{% elif post.data.title %}
{% set borderClass = "border-l-[3px] border-l-[#458588] dark:border-l-[#83a598]" %}
{% else %}
{% set borderClass = "border-l-[3px] border-l-[#427b58] dark:border-l-[#8ec07c]" %}
{% endif %}
<li class="h-entry post-card {{ borderClass }}">
{% if likedUrl %}
{# ── Like card ── #}
<div class="post-header flex items-start gap-3">
<div class="flex-shrink-0 mt-1">
<svg class="w-5 h-5 text-[#cc241d] dark:text-[#fb4934]" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<div class="post-meta">
<span class="font-medium text-[#9d0006] dark:text-[#fb4934]">Liked</span>
<time-difference><time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">
{{ post.date | dateDisplay }}
</time></time-difference>
{% if post.data.category | withoutGardenTags %}
<span class="post-categories">
{% if post.data.category is string %}
<a href="/categories/{{ post.data.category | nestedSlugify }}/" class="p-category">{{ post.data.category }}</a>
{% else %}
{% for cat in (post.data.category | withoutGardenTags) %}
<a href="/categories/{{ cat | nestedSlugify }}/" class="p-category">{{ cat }}</a>
{% endfor %}
{% endif %}
</span>
{% endif %}
{% include "components/garden-badge.njk" %}
</div>
{% unfurl likedUrl %}
<a class="u-like-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ likedUrl }}">
{{ likedUrl }}
</a>
{% if postCW %}
<p class="mt-3 text-sm text-[#b57614] dark:text-[#fabd2f]">&#9888; {{ postCW }} — <a href="{{ post.url }}" class="underline">View post</a></p>
{% elif post.templateContent %}
<div class="e-content prose dark:prose-invert prose-sm mt-3 max-w-none">
{{ post.templateContent | safe }}
</div>
{% endif %}
<a class="u-url text-sm text-[#9d0006] dark:text-[#fb4934] hover:underline mt-3 inline-block" href="{{ post.url }}" aria-label="Permalink: {{ post.data.title or ('Like from ' + (post.date | dateDisplay)) }}">Permalink</a>
</div>
</div>
{% elif bookmarkedUrl %}
{# ── Bookmark card ── #}
<div class="post-header flex items-start gap-3">
<div class="flex-shrink-0 mt-1">
<svg class="w-5 h-5 text-[#d79921] dark:text-[#fabd2f]" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<div class="post-meta">
<span class="font-medium text-[#b57614] dark:text-[#fabd2f]">Bookmarked</span>
<time-difference><time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">
{{ post.date | dateDisplay }}
</time></time-difference>
{% if post.data.category | withoutGardenTags %}
<span class="post-categories">
{% if post.data.category is string %}
<a href="/categories/{{ post.data.category | nestedSlugify }}/" class="p-category">{{ post.data.category }}</a>
{% else %}
{% for cat in (post.data.category | withoutGardenTags) %}
<a href="/categories/{{ cat | nestedSlugify }}/" class="p-category">{{ cat }}</a>
{% endfor %}
{% endif %}
</span>
{% endif %}
{% include "components/garden-badge.njk" %}
</div>
{% if post.data.title %}
<h2 class="p-name text-lg font-semibold text-surface-900 dark:text-surface-100 mt-2">
<a class="hover:text-[#b57614] dark:hover:text-[#d79921]" href="{{ post.url }}">{{ post.data.title }}</a>
</h2>
{% endif %}
{% unfurl bookmarkedUrl %}
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
{{ bookmarkedUrl }}
</a>
{% if postCW %}
<p class="mt-3 text-sm text-[#b57614] dark:text-[#fabd2f]">&#9888; {{ postCW }} — <a href="{{ post.url }}" class="underline">View post</a></p>
{% elif post.templateContent %}
<div class="e-content prose dark:prose-invert prose-sm mt-3 max-w-none">
{{ post.templateContent | safe }}
</div>
{% endif %}
<a class="u-url text-sm text-[#b57614] dark:text-[#fabd2f] hover:underline mt-3 inline-block" href="{{ post.url }}" aria-label="Permalink: {{ post.data.title or ('Bookmark from ' + (post.date | dateDisplay)) }}">Permalink</a>
</div>
</div>
{% elif repostedUrl %}
{# ── Repost card ── #}
<div class="post-header flex items-start gap-3">
<div class="flex-shrink-0 mt-1">
<svg class="w-5 h-5 text-[#98971a] dark:text-[#b8bb26]" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<div class="post-meta">
<span class="font-medium text-[#79740e] dark:text-[#b8bb26]">Reposted</span>
<time-difference><time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">
{{ post.date | dateDisplay }}
</time></time-difference>
{% if post.data.category | withoutGardenTags %}
<span class="post-categories">
{% if post.data.category is string %}
<a href="/categories/{{ post.data.category | nestedSlugify }}/" class="p-category">{{ post.data.category }}</a>
{% else %}
{% for cat in (post.data.category | withoutGardenTags) %}
<a href="/categories/{{ cat | nestedSlugify }}/" class="p-category">{{ cat }}</a>
{% endfor %}
{% endif %}
</span>
{% endif %}
{% include "components/garden-badge.njk" %}
</div>
{% unfurl repostedUrl %}
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
{{ repostedUrl }}
</a>
{% if postCW %}
<p class="mt-3 text-sm text-[#b57614] dark:text-[#fabd2f]">&#9888; {{ postCW }} — <a href="{{ post.url }}" class="underline">View post</a></p>
{% elif post.templateContent %}
<div class="e-content prose dark:prose-invert prose-sm mt-3 max-w-none">
{{ post.templateContent | safe }}
</div>
{% endif %}
<a class="u-url text-sm text-[#79740e] dark:text-[#b8bb26] hover:underline mt-3 inline-block" href="{{ post.url }}" aria-label="Permalink: {{ post.data.title or ('Repost from ' + (post.date | dateDisplay)) }}">Permalink</a>
</div>
</div>
{% elif replyToUrl %}
{# ── Reply card ── #}
<div class="post-header flex items-start gap-3">
<div class="flex-shrink-0 mt-1">
<svg class="w-5 h-5 text-[#689d6a] dark:text-[#8ec07c]" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 10h10a8 8 0 018 8v2M3 10l6 6m-6-6l6-6"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<div class="post-meta">
<span class="font-medium text-[#427b58] dark:text-[#8ec07c]">In reply to</span>
<time-difference><time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">
{{ post.date | dateDisplay }}
</time></time-difference>
{% if post.data.category | withoutGardenTags %}
<span class="post-categories">
{% if post.data.category is string %}
<a href="/categories/{{ post.data.category | nestedSlugify }}/" class="p-category">{{ post.data.category }}</a>
{% else %}
{% for cat in (post.data.category | withoutGardenTags) %}
<a href="/categories/{{ cat | nestedSlugify }}/" class="p-category">{{ cat }}</a>
{% endfor %}
{% endif %}
</span>
{% endif %}
{% include "components/garden-badge.njk" %}
</div>
{% unfurl replyToUrl %}
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ replyToUrl }}">
{{ replyToUrl }}
</a>
{% if postCW %}
<p class="mt-3 text-sm text-[#b57614] dark:text-[#fabd2f]">&#9888; {{ postCW }} — <a href="{{ post.url }}" class="underline">View post</a></p>
{% else %}
<div class="e-content prose dark:prose-invert prose-sm mt-3 max-w-none">
{{ post.templateContent | safe }}
</div>
{% endif %}
<a class="u-url text-sm text-[#427b58] dark:text-[#8ec07c] hover:underline mt-3 inline-block" href="{{ post.url }}" aria-label="Permalink: {{ post.data.title or ('Reply from ' + (post.date | dateDisplay)) }}">Permalink</a>
</div>
</div>
{% elif hasPhotos %}
{# ── Photo card ── #}
<div class="post-header flex items-start gap-3">
<div class="flex-shrink-0 mt-1">
<svg class="w-5 h-5 text-[#b16286] dark:text-[#d3869b]" fill="none" stroke="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 9a2 2 0 012-2h.93a2 2 0 001.664-.89l.812-1.22A2 2 0 0110.07 4h3.86a2 2 0 011.664.89l.812 1.22A2 2 0 0018.07 7H19a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V9z"/>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 13a3 3 0 11-6 0 3 3 0 016 0z"/>
</svg>
</div>
<div class="flex-1 min-w-0">
<div class="post-meta">
<span class="font-medium text-[#8f3f71] dark:text-[#d3869b]">Photo</span>
<time-difference><time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">
{{ post.date | dateDisplay }}
</time></time-difference>
{% if post.data.category | withoutGardenTags %}
<span class="post-categories">
{% if post.data.category is string %}
<a href="/categories/{{ post.data.category | nestedSlugify }}/" class="p-category">{{ post.data.category }}</a>
{% else %}
{% for cat in (post.data.category | withoutGardenTags) %}
<a href="/categories/{{ cat | nestedSlugify }}/" class="p-category">{{ cat }}</a>
{% endfor %}
{% endif %}
</span>
{% endif %}
{% include "components/garden-badge.njk" %}
</div>
{% if postCW %}
<p class="mt-3 text-sm text-[#b57614] dark:text-[#fabd2f]">&#9888; {{ postCW }} — <a href="{{ post.url }}" class="underline">View post</a></p>
{% else %}
<div class="photo-gallery mt-3">
{% for img in post.data.photo %}
{% set photoUrl = img.url %}
{% if photoUrl and photoUrl[0] != '/' and 'http' not in photoUrl %}
{% set photoUrl = '/' + photoUrl %}
{% endif %}
<a href="{{ post.url }}" class="photo-link">
<img src="{{ photoUrl }}" alt="{{ img.alt | default('Photo') }}" class="u-photo" loading="lazy" eleventy:ignore>
</a>
{% endfor %}
</div>
{% endif %}
{% if not postCW and post.templateContent %}
<div class="e-content photo-caption prose dark:prose-invert prose-sm mt-3 max-w-none">
{{ post.templateContent | safe }}
</div>
{% endif %}
<a class="u-url text-sm text-[#8f3f71] dark:text-[#d3869b] hover:underline mt-3 inline-block" href="{{ post.url }}" aria-label="Permalink: {{ post.data.title or ('Photo from ' + (post.date | dateDisplay)) }}">Permalink</a>
</div>
</div>
{% elif post.data.title %}
{# ── Article card (unchanged) ── #}
<div class="post-header">
<h2 class="text-xl font-semibold mb-1">
<a class="p-name u-url text-surface-900 dark:text-surface-100 hover:text-[#076678] dark:hover:text-[#83a598]" href="{{ post.url }}">
{{ post.data.title }}
</a>
</h2>
<div class="post-meta">
<time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">
{{ post.date | dateDisplay }}
</time>
{% if post.data.category | withoutGardenTags %}
<span class="post-categories">
{% if post.data.category is string %}
<a href="/categories/{{ post.data.category | nestedSlugify }}/" class="p-category">{{ post.data.category }}</a>
{% else %}
{% for cat in (post.data.category | withoutGardenTags) %}
<a href="/categories/{{ cat | nestedSlugify }}/" class="p-category">{{ cat }}</a>
{% endfor %}
{% endif %}
</span>
{% endif %}
{% include "components/garden-badge.njk" %}
</div>
</div>
{% if postCW %}
<p class="mt-3 text-sm text-[#b57614] dark:text-[#fabd2f]">&#9888; {{ postCW }} — <a href="{{ post.url }}" class="underline">View post</a></p>
{% else %}
<p class="p-summary text-surface-700 dark:text-surface-300 mt-3">
{{ post.templateContent | striptags | truncate(250) }}
</p>
<a href="{{ post.url }}" class="text-sm text-[#458588] dark:text-[#83a598] hover:underline mt-3 inline-block">
Read more &rarr;
</a>
{% endif %}
{% else %}
{# ── Note card (unchanged) ── #}
<div class="post-header">
<a class="u-url" href="{{ post.url }}">
<time-difference><time class="dt-published text-sm text-surface-600 dark:text-surface-400 font-medium font-mono" datetime="{{ post.date | isoDate }}">
{{ post.date | dateDisplay }}
</time></time-difference>
</a>
{% if post.data.category | withoutGardenTags %}
<span class="post-categories ml-2">
{% if post.data.category is string %}
<a href="/categories/{{ post.data.category | nestedSlugify }}/" class="p-category">{{ post.data.category }}</a>
{% else %}
{% for cat in (post.data.category | withoutGardenTags) %}
<a href="/categories/{{ cat | nestedSlugify }}/" class="p-category">{{ cat }}</a>
{% endfor %}
{% endif %}
</span>
{% endif %}
{% include "components/garden-badge.njk" %}
</div>
{% if postCW %}
<p class="mt-3 text-sm text-[#b57614] dark:text-[#fabd2f]">&#9888; {{ postCW }} — <a href="{{ post.url }}" class="underline">View post</a></p>
{% else %}
<div class="e-content prose dark:prose-invert prose-sm mt-3 max-w-none">
{{ post.templateContent | safe }}
</div>
{% endif %}
<div class="post-footer mt-3">
<a href="{{ post.url }}" class="text-sm text-[#427b58] dark:text-[#8ec07c] hover:underline" aria-label="Permalink: {{ post.data.title or ('Note from ' + (post.date | dateDisplay)) }}">
Permalink
</a>
</div>
{% endif %}
</li>
{% endfor %}
</ul>
{# Pagination controls #}
{% if pagination.pages.length > 1 %}
<nav class="pagination" aria-label="Blog pagination">
<div class="pagination-info">
Page {{ pagination.pageNumber + 1 }} of {{ pagination.pages.length }}
</div>
<div class="pagination-links">
{% if pagination.href.previous %}
<a href="{{ pagination.href.previous }}" class="pagination-link" aria-label="Previous page">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path></svg>
Previous
</a>
{% else %}
<span class="pagination-link disabled" aria-disabled="true">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path></svg>
Previous
</span>
{% endif %}
{% if pagination.href.next %}
<a href="{{ pagination.href.next }}" class="pagination-link" aria-label="Next page">
Next
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
</a>
{% else %}
<span class="pagination-link disabled" aria-disabled="true">
Next
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path></svg>
</span>
{% endif %}
</div>
</nav>
{% endif %}
{% else %}
<p class="text-surface-600 dark:text-surface-400">No posts yet. Create your first post using a Micropub client!</p>
<p class="mt-4 text-surface-600 dark:text-surface-400">Some popular Micropub clients:</p>
<ul class="list-disc list-inside mt-2 text-surface-700 dark:text-surface-300 space-y-1">
<li><a href="https://quill.p3k.io" class="text-accent-700 dark:text-accent-300 hover:underline">Quill</a> - Web-based</li>
<li><a href="https://indiepass.app" class="text-accent-700 dark:text-accent-300 hover:underline">IndiePass</a> - Mobile app</li>
<li><a href="https://micropublish.net" class="text-accent-700 dark:text-accent-300 hover:underline">Micropublish</a> - Web-based</li>
</ul>
{% endif %}
</div>