fix: use URL as link text in Linked From when post has no title
Build & Deploy / build-and-deploy (push) Successful in 1m29s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
svemagie
2026-04-10 10:16:23 +02:00
parent e30eb61543
commit 2f2a0ada14
+1 -1
View File
@@ -165,7 +165,7 @@ withBlogSidebar: true
{% for post in _backlinks %}
<li>
<a href="{{ post.url }}" class="text-sm text-accent-700 dark:text-accent-300 hover:underline">
{{ post.data.title or "Untitled" }}
{{ post.data.title or post.url }}
</a>
</li>
{% endfor %}