[frio] Add a <section> tag to the home page default template

- This is required to make page wrapper display correctly
This commit is contained in:
Hypolite Petovan 2023-08-12 10:18:53 +02:00
parent 1b7075aebb
commit a966993c54
1 changed files with 2 additions and 2 deletions

View File

@ -137,12 +137,12 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
';
} else {
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'])) {
echo $page['content'];
}
echo '
</div>
</section>
';
}
?>