SW/index.php
2021-05-19 10:09:05 +02:00

32 lines
1007 B
PHP

<?php
//General Config File:
require_once(__DIR__.'/assets/php/config.php');
//Page-specific content:
$section = '<!-- Undercard -->
<section id="cartelera">
<div class="row">
<div class="code">
'.$template->print_fimls().'
</div>
</div>
</section>
<section id="promociones" class="row">
<div class="code">
<section class="promotions">
<button id="retroceder">Anterior</button>
<img class="imagen" />
<button id="avanzar">Siguiente</button>
</section>
<section class="controls">
<button id="play">►</button>
<button id="stop" disabled>||</button>
</section>
</div>
</section>
';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>