Reorganizacion do tema.

This commit is contained in:
Laegnur 2022-11-21 12:36:16 +01:00
parent 194c126003
commit 45c2119645
8 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
<?php namespace ProcessWire; <?php namespace ProcessWire;
include_once('./_func.php'); include_once('./layout/func.php');
$start = microtime(true); $start = microtime(true);
$inicio = $pages->get('/'); $inicio = $pages->get('/');

View file

@ -1,6 +1,6 @@
<?php namespace ProcessWire; <?php namespace ProcessWire;
include('./_head.php'); include('./layout/partial/main_head.php');
?> ?>
<main id="contido"> <main id="contido">
<?php <?php
@ -8,5 +8,5 @@ include('./_head.php');
?> ?>
</main> </main>
<?php <?php
include('./_foot.php'); include('./layout/partial/main_foot.php');
?> ?>

View file

@ -1,6 +1,6 @@
<?php namespace ProcessWire; <?php namespace ProcessWire;
include('./_xes-head.php'); include('./layout/partial/xes-head.php');
?> ?>
<main id="contido"> <main id="contido">
<?php <?php
@ -8,4 +8,4 @@ include('./_xes-head.php');
?> ?>
</main> </main>
<?php <?php
include('./_xes-foot.php'); include('./layout/partial/xes-foot.php');