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
75 lines
3.2 KiB
Plaintext
75 lines
3.2 KiB
Plaintext
{# Reply Context Component #}
|
|
{# Displays rich context for replies, likes, reposts, and bookmarks #}
|
|
{# Uses h-cite microformat for citing external content #}
|
|
{# Includes unfurl card for rich link preview (OpenGraph metadata) #}
|
|
|
|
{# Support both camelCase (Indiekit Eleventy preset) and underscore (legacy) property names #}
|
|
{% set replyTo = inReplyTo or in_reply_to %}
|
|
{% set likedUrl = likeOf or like_of %}
|
|
{% set repostedUrl = repostOf or repost_of %}
|
|
{% set bookmarkedUrl = bookmarkOf or bookmark_of %}
|
|
|
|
{% if replyTo or likedUrl or repostedUrl or bookmarkedUrl %}
|
|
<aside class="reply-context mb-6" aria-label="Reply context">
|
|
{% if replyTo %}
|
|
<div class="u-in-reply-to h-cite">
|
|
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
|
|
<svg class="w-4 h-4" 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>
|
|
<span>In reply to:</span>
|
|
</p>
|
|
{% unfurl replyTo %}
|
|
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ replyTo }}">
|
|
{{ replyTo }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if likedUrl %}
|
|
<div class="u-like-of h-cite">
|
|
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
|
|
<svg class="w-4 h-4 text-red-500" 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>
|
|
<span>Liked:</span>
|
|
</p>
|
|
{% unfurl likedUrl %}
|
|
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ likedUrl }}">
|
|
{{ likedUrl }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if repostedUrl %}
|
|
<div class="u-repost-of h-cite">
|
|
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
|
|
<svg class="w-4 h-4 text-green-500" 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>
|
|
<span>Reposted:</span>
|
|
</p>
|
|
{% unfurl repostedUrl %}
|
|
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ repostedUrl }}">
|
|
{{ repostedUrl }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if bookmarkedUrl %}
|
|
<div class="u-bookmark-of h-cite">
|
|
<p class="text-sm text-surface-600 dark:text-surface-400 mb-2 flex items-center gap-2">
|
|
<svg class="w-4 h-4 text-yellow-500" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z"/>
|
|
</svg>
|
|
<span>Bookmarked:</span>
|
|
</p>
|
|
{% unfurl bookmarkedUrl %}
|
|
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ bookmarkedUrl }}">
|
|
{{ bookmarkedUrl }}
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</aside>
|
|
{% endif %}
|