diff options
author | Thomas Lange <code@nerdmind.de> | 2021-05-25 01:44:49 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-05-25 01:44:49 +0200 |
commit | 95c0ccd0958321056fb2d815c513c0b71c46f973 (patch) | |
tree | b64c008280d01c8d008085957676379ad58ea63d /theme | |
parent | 2c693b3aa1b5f256016a3316edffe8ce933bf05c (diff) | |
download | blog-95c0ccd0958321056fb2d815c513c0b71c46f973.tar.gz blog-95c0ccd0958321056fb2d815c513c0b71c46f973.tar.xz blog-95c0ccd0958321056fb2d815c513c0b71c46f973.zip |
Change header icon link in admin theme
This commit changes the URL of the icon link in the admin theme. The
link now leads to the blogs home page instead of the admin dashboard.
Diffstat (limited to 'theme')
-rw-r--r-- | theme/admin/html/main.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/theme/admin/html/main.php b/theme/admin/html/main.php index 51f00e4..2020555 100644 --- a/theme/admin/html/main.php +++ b/theme/admin/html/main.php @@ -12,7 +12,9 @@ <header id="main-header"> <div class="header-line"> <div class="header-content"> - <a href="<?=Application::getAdminURL()?>"><img id="header-logo" src="<?=Application::getTemplateURL('rsrc/icon-public-domain.svg')?>" alt="Administration" /></a> + <a href="<?=Application::getURL()?>"> + <img id="header-logo" src="<?=Application::getTemplateURL('rsrc/icon-public-domain.svg')?>" alt="Administration" /> + </a> <div id="header-text">Administration</div> <div id="header-desc">PHP7 blogging application by <span>Nerdmind</span>!</div> </div> |