From 2f2a0ada145ac01410a52a3cd77d45839e88edc9 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Fri, 10 Apr 2026 10:16:23 +0200 Subject: [PATCH] fix: use URL as link text in Linked From when post has no title Co-Authored-By: Claude Sonnet 4.6 --- _includes/layouts/post.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/layouts/post.njk b/_includes/layouts/post.njk index 2a66012..1806f0e 100644 --- a/_includes/layouts/post.njk +++ b/_includes/layouts/post.njk @@ -165,7 +165,7 @@ withBlogSidebar: true {% for post in _backlinks %}
  • - {{ post.data.title or "Untitled" }} + {{ post.data.title or post.url }}
  • {% endfor %}