mirror of
https://github.com/svemagie/blog-eleventy-indiekit.git
synced 2026-04-02 08:44:56 +02:00
- Focus traps for fediverse modal and lightbox dialogs (C3, C4) - Search widget input label (C5) - Blogroll widget tab ARIA semantics (C6) - Footer social links "opens in new tab" warning (S5) - Reply context aria-label on aside (S8) - Photo alt text fallback includes post title (S10) - Post categories use list markup (M3) - Funkwhale now-playing bars aria-hidden (M7) - TOC uses static Tailwind classes instead of dynamic (M9) - Footer headings use proper aria heading roles (M15) - Header anchor opacity increased to 1 for contrast (M18) - Custom HTML widgets labeled as regions (M19) - Empty collection placeholder role=status (M22) - GitHub widget loading state announced (N5) - Subscribe icon contrast improved (m1) - All Permalink links have aria-label with post context (m3) - Podroll audio element aria-label (m4) - Obfuscated email link aria-label (m6) - Fediverse follow button uses aria-label (M10) Score: 53.6% → 92.9% (26/28 WCAG criteria passing) Confab-Link: http://localhost:8080/sessions/0ec83454-d346-4329-8aaf-6b12139bf596
170 lines
8.5 KiB
Plaintext
170 lines
8.5 KiB
Plaintext
---
|
|
layout: layouts/base.njk
|
|
withSidebar: true
|
|
pagefindIgnore: true
|
|
eleventyExcludeFromCollections: true
|
|
eleventyImport:
|
|
collections:
|
|
- weeklyDigests
|
|
pagination:
|
|
data: collections.weeklyDigests
|
|
size: 1
|
|
alias: digest
|
|
eleventyComputed:
|
|
title: "{{ digest.label }}"
|
|
permalink: "digest/{{ digest.slug }}/"
|
|
---
|
|
<article class="h-feed">
|
|
<h1 class="text-2xl sm:text-3xl font-bold text-surface-900 dark:text-surface-100 mb-2">
|
|
{{ digest.label }}
|
|
</h1>
|
|
<p class="text-surface-600 dark:text-surface-400 mb-6 sm:mb-8">
|
|
<time class="font-mono" datetime="{{ digest.startDate | isoDate }}">{{ digest.startDate | dateDisplay }}</time> – <time class="font-mono" datetime="{{ digest.endDate | isoDate }}">{{ digest.endDate | dateDisplay }}</time>
|
|
<span class="text-sm">({{ digest.posts.length }} post{% if digest.posts.length != 1 %}s{% endif %})</span>
|
|
</p>
|
|
|
|
{# Type display order #}
|
|
{% set typeOrder = [
|
|
{ key: "articles", label: "Articles" },
|
|
{ key: "notes", label: "Notes" },
|
|
{ key: "photos", label: "Photos" },
|
|
{ key: "bookmarks", label: "Bookmarks" },
|
|
{ key: "likes", label: "Likes" },
|
|
{ key: "reposts", label: "Reposts" }
|
|
] %}
|
|
|
|
{% for typeInfo in typeOrder %}
|
|
{% set typePosts = digest.byType[typeInfo.key] %}
|
|
{% if typePosts and typePosts.length %}
|
|
<section class="mb-8">
|
|
<h2 class="text-lg sm:text-xl font-semibold text-surface-800 dark:text-surface-200 mb-4 border-b border-surface-200 dark:border-surface-700 pb-2">
|
|
{{ typeInfo.label }}
|
|
<span class="text-sm font-normal text-surface-600 dark:text-surface-400">({{ typePosts.length }})</span>
|
|
</h2>
|
|
<ul class="space-y-4">
|
|
{% for post in typePosts %}
|
|
<li class="h-entry">
|
|
{% if typeInfo.key == "likes" %}
|
|
{% set targetUrl = post.data.likeOf or post.data.like_of %}
|
|
<div class="flex items-start gap-2">
|
|
<span class="text-red-500 flex-shrink-0">❤</span>
|
|
<div>
|
|
<a href="{{ targetUrl }}" class="text-accent-600 dark:text-accent-400 hover:underline break-all">{{ targetUrl }}</a>
|
|
<div class="text-sm text-surface-600 dark:text-surface-400 mt-1">
|
|
<time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">{{ post.date | dateDisplay }}</time>
|
|
· <a href="{{ post.url }}" class="hover:underline" aria-label="Permalink: {{ post.data.title or (post.date | dateDisplay) }}">Permalink</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% elif typeInfo.key == "bookmarks" %}
|
|
{% set targetUrl = post.data.bookmarkOf or post.data.bookmark_of %}
|
|
<div class="flex items-start gap-2">
|
|
<span class="text-amber-500 flex-shrink-0">🔖</span>
|
|
<div>
|
|
{% if post.data.title %}
|
|
<a href="{{ post.url }}" class="font-medium text-surface-900 dark:text-surface-100 hover:text-accent-600 dark:hover:text-accent-400">{{ post.data.title }}</a>
|
|
{% else %}
|
|
<a href="{{ targetUrl }}" class="text-accent-600 dark:text-accent-400 hover:underline break-all">{{ targetUrl }}</a>
|
|
{% endif %}
|
|
<div class="text-sm text-surface-600 dark:text-surface-400 mt-1">
|
|
<time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">{{ post.date | dateDisplay }}</time>
|
|
· <a href="{{ post.url }}" class="hover:underline" aria-label="Permalink: {{ post.data.title or (post.date | dateDisplay) }}">Permalink</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% elif typeInfo.key == "reposts" %}
|
|
{% set targetUrl = post.data.repostOf or post.data.repost_of %}
|
|
<div class="flex items-start gap-2">
|
|
<span class="text-green-500 flex-shrink-0">🔁</span>
|
|
<div>
|
|
<a href="{{ targetUrl }}" class="text-accent-600 dark:text-accent-400 hover:underline break-all">{{ targetUrl }}</a>
|
|
<div class="text-sm text-surface-600 dark:text-surface-400 mt-1">
|
|
<time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">{{ post.date | dateDisplay }}</time>
|
|
· <a href="{{ post.url }}" class="hover:underline" aria-label="Permalink: {{ post.data.title or (post.date | dateDisplay) }}">Permalink</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% elif typeInfo.key == "photos" %}
|
|
<div>
|
|
{% if post.data.photo and post.data.photo[0] %}
|
|
{% set photoUrl = post.data.photo[0].url or post.data.photo[0] %}
|
|
{% if photoUrl and photoUrl[0] != '/' and 'http' not in photoUrl %}
|
|
{% set photoUrl = '/' + photoUrl %}
|
|
{% endif %}
|
|
<a href="{{ post.url }}" class="block mb-2">
|
|
<img src="{{ photoUrl }}" alt="{{ post.data.photo[0].alt | default('Photo') }}" class="rounded max-h-48 object-cover" loading="lazy" eleventy:ignore>
|
|
</a>
|
|
{% endif %}
|
|
{% if post.data.title %}
|
|
<a href="{{ post.url }}" class="font-medium text-surface-900 dark:text-surface-100 hover:text-accent-600 dark:hover:text-accent-400">{{ post.data.title }}</a>
|
|
{% elif post.templateContent %}
|
|
<p class="text-surface-700 dark:text-surface-300 text-sm">{{ post.templateContent | striptags | truncate(120) }}</p>
|
|
{% endif %}
|
|
<div class="text-sm text-surface-600 dark:text-surface-400 mt-1">
|
|
<time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">{{ post.date | dateDisplay }}</time>
|
|
· <a href="{{ post.url }}" class="hover:underline" aria-label="Permalink: {{ post.data.title or (post.date | dateDisplay) }}">Permalink</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% elif typeInfo.key == "articles" %}
|
|
<div>
|
|
<a href="{{ post.url }}" class="font-medium text-surface-900 dark:text-surface-100 hover:text-accent-600 dark:hover:text-accent-400">
|
|
{{ post.data.title | default("Untitled") }}
|
|
</a>
|
|
{% if post.templateContent %}
|
|
<p class="text-surface-700 dark:text-surface-300 text-sm mt-1">{{ post.templateContent | striptags | truncate(200) }}</p>
|
|
{% endif %}
|
|
<div class="text-sm text-surface-600 dark:text-surface-400 mt-1">
|
|
<time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">{{ post.date | dateDisplay }}</time>
|
|
· <a href="{{ post.url }}" class="hover:underline" aria-label="Permalink: {{ post.data.title or (post.date | dateDisplay) }}">Permalink</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% else %}
|
|
<div>
|
|
<p class="text-surface-700 dark:text-surface-300">{{ post.templateContent | striptags | truncate(200) }}</p>
|
|
<div class="text-sm text-surface-600 dark:text-surface-400 mt-1">
|
|
<time class="dt-published font-mono text-sm" datetime="{{ post.date | isoDate }}">{{ post.date | dateDisplay }}</time>
|
|
· <a href="{{ post.url }}" class="hover:underline" aria-label="Permalink: {{ post.data.title or (post.date | dateDisplay) }}">Permalink</a>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{# Previous/Next digest navigation #}
|
|
{% set allDigests = collections.weeklyDigests %}
|
|
{% set currentIndex = -1 %}
|
|
{% for d in allDigests %}
|
|
{% if d.slug == digest.slug %}
|
|
{% set currentIndex = loop.index0 %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<nav class="flex justify-between items-center mt-8 pt-6 border-t border-surface-200 dark:border-surface-700" aria-label="Digest navigation">
|
|
{% if currentIndex > 0 %}
|
|
{% set newer = allDigests[currentIndex - 1] %}
|
|
<a href="/digest/{{ newer.slug }}/" class="text-amber-600 dark:text-amber-400 hover:underline">
|
|
← {{ newer.label }}
|
|
</a>
|
|
{% else %}
|
|
<span></span>
|
|
{% endif %}
|
|
{% if currentIndex < allDigests.length - 1 %}
|
|
{% set older = allDigests[currentIndex + 1] %}
|
|
<a href="/digest/{{ older.slug }}/" class="text-amber-600 dark:text-amber-400 hover:underline">
|
|
{{ older.label }} →
|
|
</a>
|
|
{% else %}
|
|
<span></span>
|
|
{% endif %}
|
|
</nav>
|
|
</article>
|