Fix cart-mini fragment using internal URL for logo image
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 53s

site().logo resolves against g.host which is cart:8000 on internal
fragment requests. Use blog_url() for the public blog asset URL.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-24 09:37:44 +00:00
parent 0b2e59bc2c
commit a72598f75e

View File

@@ -6,7 +6,7 @@
class="h-full w-full font-bold text-5xl flex-shrink-0 flex flex-row items-center gap-1"
>
<img
src="{{ site().logo }}"
src="{{ blog_url('/static/img/logo.jpg') }}"
class="h-full w-full rounded-full object-cover border border-stone-300 flex-shrink-0"
>
</a>