From 721f37d23feb9e958ca4ee5f39ea26febb0cebcf Mon Sep 17 00:00:00 2001 From: Ricardo Date: Fri, 30 Jan 2026 15:02:10 +0100 Subject: [PATCH] feat: add essential h-card properties to blog sidebar Compact author card now includes p-author, u-uid, p-locality, p-country-name, and p-note (hidden) for microformat completeness. --- _includes/components/blog-sidebar.njk | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/_includes/components/blog-sidebar.njk b/_includes/components/blog-sidebar.njk index 3ac588c..3f90f5d 100644 --- a/_includes/components/blog-sidebar.njk +++ b/_includes/components/blog-sidebar.njk @@ -1,22 +1,28 @@ {# Blog Sidebar - Shown on individual post pages #} {# Contains: Author compact card, Related posts, Categories, Recent posts #} -{# Author Compact Card #} +{# Author Compact Card - h-card microformat (compact version) #}
-
- {{ site.author.name }} +
+ + {{ site.author.name }} +
{{ site.author.name }}

{{ site.author.title }}

+ {% if site.author.locality %} +

{{ site.author.locality }}{% if site.author.country %}, {{ site.author.country }}{% endif %}

+ {% endif %}
+
{# Post Navigation Widget - Previous/Next #}