Merge pull request #13342 from MrPetovan/bug/13333-exception-home-page

[frio] Add a <section> tag to the home page default template
This commit is contained in:
Michael Vogel 2023-08-13 05:27:37 +02:00 committed by GitHub
commit a87de6cdaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,12 +137,12 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
'; ';
} else { } else {
echo ' echo '
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="content" style="margin-top:50px;">'; <section class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="content" style="margin-top:50px;">';
if (!empty($page['content'])) { if (!empty($page['content'])) {
echo $page['content']; echo $page['content'];
} }
echo ' echo '
</div> </section>
'; ';
} }
?> ?>