Solved Resource icons are not lazy-loading

This topic has been solved
K

Kirby

Guest
\XFRM\Template\TemplateSetup::fnResourceIcon

PHP:

Code:
return "<{$tag} {$hrefAttr} class=\"avatar avatar--{$size}\"{$attributesString}>"
        . '<img src="' . htmlspecialchars($src) . '" alt="' . htmlspecialchars($resource->title) . '" />'
        . "</{$tag}>";
is is missing loading="lazy"

Continue reading...