diff options
author | Thomas Lange <code@nerdmind.de> | 2017-09-02 15:37:19 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-09-02 15:37:19 +0200 |
commit | 4addfb603e88642674003469c147eb8d5debbd96 (patch) | |
tree | abae2ac6055699228dac09b7555a8cd91fb53aa1 /template/standard/html/post/main.php | |
parent | c503f83d169fe15e10e2d97fd4ece9cdc884e436 (diff) | |
download | blog-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/post/main.php')
-rw-r--r-- | template/standard/html/post/main.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/standard/html/post/main.php b/template/standard/html/post/main.php index 709e719..e91fa4e 100644 --- a/template/standard/html/post/main.php +++ b/template/standard/html/post/main.php @@ -13,9 +13,9 @@ $time = "<time datetime=\"{$POST['ATTR']['TIME_INSERT']}\" title=\"".parseDateti <h1><i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?></h1> <p><?=$Language->text('post_main_heading_desc', [$user, $time])?></p> -<section id="content" class="post"> +<div id="content" class="post"> <?=$POST['BODY']['HTML']()?> -</section> +</div> <section id="site-navi"> |