fix: img attribute

add loading/decoding/fetchpriority

remove alt for decorative images
This commit is contained in:
ZhenShuo Leo
2025-09-18 13:42:22 +08:00
parent e6968d877f
commit 9eebb5b2aa
8 changed files with 21 additions and 10 deletions
+7 -1
View File
@@ -51,7 +51,13 @@
{{ with $featuredURL }}
<figure>
<img class="w-full rounded-lg single_hero_round nozoom" alt="{{ $alt }}" src="{{ . }}">
<img
src="{{ . }}"
alt="{{ $alt }}"
loading="eager"
decoding="async"
fetchpriority="high"
class="w-full rounded-lg single_hero_round nozoom">
{{ if $caption }}
<figcaption class="text-sm text-neutral-700 dark:text-neutral-400 hover:underline text-center">
{{ $caption | markdownify }}