diff options
Diffstat (limited to 'app/layout/header.phtml')
| -rw-r--r-- | app/layout/header.phtml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/layout/header.phtml b/app/layout/header.phtml index b5a9b662c..94a83894e 100644 --- a/app/layout/header.phtml +++ b/app/layout/header.phtml @@ -1,7 +1,13 @@ <header class="header"> <div class="item title"> <a href="<?= _url('index', 'index') ?>"> - <img class="logo" src="<?= _i('FreshRSS-logo', true) ?>" alt="" /> + <?php if (FreshRSS_Context::$system_conf->logo_html == '') { ?> + <img class="logo" src="<?= _i('FreshRSS-logo', true) ?>" alt="FreshRSS" /> + <?php + } else { + echo FreshRSS_Context::$system_conf->logo_html; + } + ?> </a> </div> |
