From 55d1b2a04c098e106e588d58944302f06c39f687 Mon Sep 17 00:00:00 2001 From: Thomas Lange <code@nerdmind.de> Date: Wed, 26 Jul 2017 18:58:38 +0200 Subject: The "title" attribute has been added to the link tag of the stylesheet so that browsers like Firefox can display the name of the stylesheet under "View -> Page Style". --- template/standard/html/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/standard/html/main.php b/template/standard/html/main.php index ac9bf31..4572422 100644 --- a/template/standard/html/main.php +++ b/template/standard/html/main.php @@ -41,7 +41,7 @@ $BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']); <?php endif; ?> <link rel="icon" href="<?=Application::getTemplateURL('rsrc/favicon.ico')?>" /> - <link rel="stylesheet" href="<?=Application::getTemplateURL('rsrc/main.css')?>" /> + <link rel="stylesheet" href="<?=Application::getTemplateURL('rsrc/main.css')?>" title="<?=$BLOGMETA_NAME?>" /> <link rel="alternate" type="application/rss+xml" title="<?=$Language->text('feed_name_items', $BLOGMETA_NAME)?>" href="<?=Application::getURL('feed/')?>" /> <link rel="alternate" type="application/rss+xml" title="<?=$Language->text('feed_name_posts', $BLOGMETA_NAME)?>" href="<?=Application::getURL('feed/post/')?>" /> -- cgit v1.2.3