]> git.mxchange.org Git - friendica.git/commitdiff
[frio] Add a <section> tag to the home page default template
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Aug 2023 08:18:53 +0000 (10:18 +0200)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 12 Aug 2023 08:18:53 +0000 (10:18 +0200)
- This is required to make page wrapper display correctly

view/theme/frio/php/default.php

index a75207a206867e719f8e42e044b91bbf5b03f248..74c30f6f7b4eee0a62a4b5746284be346a059e88 100644 (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>
                                        ';
                                }
 ?>