18 lines
No EOL
407 B
PHP
18 lines
No EOL
407 B
PHP
<?php namespace ProcessWire;
|
|
|
|
/** @var Page $page API variable */
|
|
|
|
$menu = '';
|
|
$contido = '';
|
|
|
|
if($configuracion['mantemento']['activo'] && !$user->isLoggedin())
|
|
{
|
|
$menu = renderMenu($pages->get('/noticias')->and($pages->get('/contacto')));
|
|
}
|
|
else
|
|
{
|
|
$menu = renderMenu($inicio->children);
|
|
}
|
|
|
|
$contido .= renderMigasPan($page) . "\n";
|
|
$contido .= renderArtigos($page, $languages->getLocale(), false); |