praiadeseselle/site/templates/layout/main.php

24 lines
735 B
PHP
Raw Normal View History

2022-03-09 18:09:44 +01:00
<?php namespace ProcessWire;
/**
* _main.php
* Main markup file
*
* This file contains all the main markup for the site and outputs the regions
* defined in the initialization (_init.php) file.
*
*/
/** @var string $titulo Variable defined in _init.php */
/** @var Page $inicio Variable defined in _init.php */
/** @var Page $page API variable */
/** @var Pages $pages API variable */
/** @var Config $config API variable */
/** @var Sanitizer $sanitizer API variable */
/** @var WireInput $input API variable */
/** @var User $user API variable */
include('./layout/partial/main_head.php'); ?>
2023-02-21 14:48:37 +01:00
<main id="contido" class="flex-shrink-0"><?php echo $contido; ?></main>
<?php include('./layout/partial/main_foot.php');