aboutsummaryrefslogtreecommitdiff
path: root/app/layout/simple.phtml
diff options
context:
space:
mode:
authorGravatar Sadetdin EYILI <sad270@users.noreply.github.com> 2023-01-09 10:37:35 +0100
committerGravatar GitHub <noreply@github.com> 2023-01-09 10:37:35 +0100
commitbbe3eb8f41ca9c25d1619cda9609392ffc803146 (patch)
tree5079caff814cd31bff9d708d3a71dea0c5993d81 /app/layout/simple.phtml
parent7d12ecff0145c66113f81ce1b704316da0a403a5 (diff)
Lazy load logo on install, logo on header and theme thumbs in config slide (#4998)
* feat: lazy load logo on install, logo on header and theme thumbs in config slide
Diffstat (limited to 'app/layout/simple.phtml')
-rw-r--r--app/layout/simple.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/simple.phtml b/app/layout/simple.phtml
index 8a2ee14bb..c9d209999 100644
--- a/app/layout/simple.phtml
+++ b/app/layout/simple.phtml
@@ -31,7 +31,7 @@
<div class="item title">
<a href="<?= _url('index', 'index') ?>">
<?php if (FreshRSS_Context::$system_conf->logo_html == '') { ?>
- <img class="logo" src="<?= _i('FreshRSS-logo', FreshRSS_Themes::ICON_URL) ?>" alt="FreshRSS" />
+ <img class="logo" src="<?= _i('FreshRSS-logo', FreshRSS_Themes::ICON_URL) ?>" alt="FreshRSS" loading="lazy" />
<?php
} else {
echo FreshRSS_Context::$system_conf->logo_html;