26 lines
376 B
PHP
26 lines
376 B
PHP
<?php
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
// corriger les intertitres de SPIP
|
|
$GLOBALS['debut_intertitre'] = "\n<h2>";
|
|
$GLOBALS['fin_intertitre'] = "</h2>\n";
|
|
|
|
// Blocs Zcore
|
|
$GLOBALS['z_blocs'] = array(
|
|
'content',
|
|
'head',
|
|
'header',
|
|
'breadcrumb',
|
|
'extra',
|
|
'aside',
|
|
'connex',
|
|
'footer',
|
|
);
|
|
|
|
define('_CONTENT_WIDTH', 990);
|
|
define('_IMAGE_RATIO', '1:1');
|
|
|