id dans footer et gen screenshot (8.5.3)

This commit is contained in:
fredtempez 2018-12-30 14:23:08 +01:00
parent 176ff461d4
commit 78ef2cf511
3 changed files with 20 additions and 16 deletions

View File

@ -140,8 +140,8 @@
<footer <?php if($this->getData(['theme', 'footer', 'position']) === 'hide'): ?>class="displayNone"<?php endif; ?>>
<div class="container">
<div class="row">
<div class="col4" id="siteLeft"> <!-- bloc gauche -->
<div class="row" id="footersite">
<div class="col4" id="footersiteLeft"> <!-- bloc gauche -->
<?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'left') {
$layout->showFooterText();}
@ -155,7 +155,7 @@
$layout->showCopyright(); }
?>
</div>
<div class="col4" id="siteCenter"> <!-- bloc central -->
<div class="col4" id="footersiteCenter"> <!-- bloc central -->
<?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'center') {
$layout->showFooterText(); }
@ -169,7 +169,7 @@
$layout->showCopyright(); }
?>
</div>
<div class="col4" id="siteRight"> <!-- bloc droite -->
<div class="col4" id="footersiteRight"> <!-- bloc droite -->
<?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'right') {
$layout->showFooterText(); }
@ -192,8 +192,8 @@
<!-- Pied de page dans le fond du site -->
<footer>
<div class="container-large">
<div class="row">
<div class="col4" id="bodyLeft"> <!-- bloc gauche -->
<div class="row" id="footerbody">
<div class="col4" id="footerbodyLeft"> <!-- bloc gauche -->
<?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'left') {
$layout->showFooterText(); }
@ -207,7 +207,7 @@
$layout->showCopyright(); }
?>
</div>
<div class="col4" id="bodyCenter"> <!-- bloc central -->
<div class="col4" id="footerbodyCenter"> <!-- bloc central -->
<?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'center') {
$layout->showFooterText(); }
@ -221,7 +221,7 @@
$layout->showCopyright(); }
?>
</div>
<div class="col4" id="bodyRight"> <!-- bloc droite -->
<div class="col4" id="footerbodyRight"> <!-- bloc droite -->
<?php
if($this->getData(['theme', 'footer', 'textPosition']) === 'right') {
$layout->showFooterText(); }

View File

@ -268,6 +268,10 @@ class config extends common {
'state' => true
]);
}
// Initialisation du screen
if (!file_exists('site/file/source/screenshot.png')) {
$this->configMetaImage();
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Configuration',

View File

@ -40,23 +40,23 @@ nav a.active {
}
/* Bas de page */
footer {
#footersite, #footerbody {
}
/* Liens du bas de page */
footer a {
#footersite, #footerbody a {
}
/* Réseaux sociaux dans le bas de page */
#footerSocials {
/* footer bloc gauche */
#footersiteLeft, #footerbodyLeft {
}
/* Texte libre dans le bas de page */
#footerText {
/* footer bloc central */
#footersiteCenter, #footerbodyCenter {
}
/* Copyright dans le bas de page */
#footerCopyright {
/* footer bloc droite */
#footersiteRight, #footerbodyRight {
}
/**