praiadeseselle/site/templates/publicacion.php

11 lines
242 B
PHP
Raw Normal View History

2022-10-25 14:47:38 +02:00
<?php namespace ProcessWire;
2023-02-21 14:48:37 +01:00
/** @var Page $page API variable */
2022-10-25 14:47:38 +02:00
2023-02-21 14:48:37 +01:00
$menu = '';
$contido = '';
2022-10-25 14:47:38 +02:00
2023-02-21 14:48:37 +01:00
$menu = renderMenu($inicio->children);
$contido .= renderMigasPan($page) . "\n";
$contido .= renderArtigos($page, $languages->getLocale(), false);