Limiter le multi colonne aux seules pages

This commit is contained in:
fredtempez 2019-01-09 18:38:50 +01:00
parent 56431f99db
commit 47a594c1de
1 changed files with 6 additions and 4 deletions

View File

@ -115,10 +115,12 @@
</div>
</nav>
<?php endif; ?>
<!-- Corps -->
<?php if ( is_null($this->getData(['page',$this->getUrl(0)])) OR
is_null($this->getData(['module',$this->getUrl(0)])) OR
$this->getUrl(1) !== '' ) { ?> <!-- Multi colonne uniquement pour les pages -->
<!-- corps -->
<?php if ( $this->getData(['page',$this->getUrl(0)]) === NULL OR
$this->getData(['module',$this->getUrl(0)]) === NULL OR
$this->getUrl(0) === 'page' OR
$this->getUrl(1) === 'config'
) { ?> <!-- Multi colonne uniquement pour les pages du site hors config, theme etc.-->
<section><?php $layout->showContent(); ?></section>
<?php } else {
$blocks = explode('-',$this->getData(['theme','site','blocks']));