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/user/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/user/main.php')
-rw-r--r-- | template/standard/html/user/main.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/standard/html/user/main.php b/template/standard/html/user/main.php index 2a195a4..c72d53e 100644 --- a/template/standard/html/user/main.php +++ b/template/standard/html/user/main.php @@ -10,9 +10,9 @@ <h1><i class="fa fa-user"></i><?=escapeHTML($USER['ATTR']['FULLNAME'])?></h1> <p><em><?=$Language->text('user_main_heading_desc', [escapeHTML($USER['ATTR']['USERNAME']), $COUNT['POST'], $COUNT['PAGE']])?></em></p> -<section id="content" class="user"> +<div id="content" class="user"> <?=$USER['BODY']['HTML']()?> -</section> +</div> <section id="site-navi"> |