Revert "13.2.01 supprime la balise section"

This reverts commit 9e656294a6.
This commit is contained in:
Fred Tempez 2024-04-22 14:17:11 +02:00
parent fc69015448
commit cdab4659a6
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ class layout extends common
*/
public function showMain()
{
echo '<main>';
echo '<main><section>';
// Récupérer la config de la page courante
$blocks = is_null($this->getData(['page', $this->getUrl(0), 'block'])) ? '12' : $this->getData(['page', $this->getUrl(0), 'block']);
$blocks = explode('-', $blocks);
@ -151,7 +151,7 @@ class layout extends common
}
echo '</div>';
}
echo '</main>';
echo '</main></section>';
}
/**