summaryrefslogtreecommitdiffstats
path: root/template/standard/html/main.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-09-02 15:37:19 +0200
committerThomas Lange <code@nerdmind.de>2017-09-02 15:37:19 +0200
commit4addfb603e88642674003469c147eb8d5debbd96 (patch)
treeabae2ac6055699228dac09b7555a8cd91fb53aa1 /template/standard/html/main.php
parentc503f83d169fe15e10e2d97fd4ece9cdc884e436 (diff)
downloadblog-4addfb603e88642674003469c147eb8d5debbd96.tar.gz
blog-4addfb603e88642674003469c147eb8d5debbd96.tar.xz
blog-4addfb603e88642674003469c147eb8d5debbd96.zip
Multiple <section> elements were replaced by simple <div> elements. If a container element is only used for the CSS and has no semantic meaning, then a <section> element is definitely wrong for this purpose.
Diffstat (limited to 'template/standard/html/main.php')
-rw-r--r--template/standard/html/main.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/template/standard/html/main.php b/template/standard/html/main.php
index 12364e5..19eceec 100644
--- a/template/standard/html/main.php
+++ b/template/standard/html/main.php
@@ -52,13 +52,13 @@ $BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']);
<title><?="{$HEAD_NAME} | {$BLOGMETA_NAME} {$BLOGMETA_DESC}"?></title>
</head>
<body>
- <section id="container">
+ <div id="container">
<header id="main-header">
- <section>
+ <div>
<a href="<?=Application::getURL()?>" title="<?="{$BLOGMETA_NAME} {$BLOGMETA_DESC}"?>">
<img id="main-logo" src="<?=Application::getTemplateURL('rsrc/logo.png')?>" alt="<?=$BLOGMETA_NAME?>" />
</a>
- </section>
+ </div>
<nav id="main-navi">
<label for="toogle-nav" id="toogle-nav-label" class="fa fa-bars"></label>
<input type="checkbox" id="toogle-nav" />
@@ -97,6 +97,6 @@ $BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']);
<footer id="main-footer">
&copy; <?=$BLOGMETA_NAME?>
</footer>
- </section>
+ </div>
</body>
</html> \ No newline at end of file