SW/index.php

32 lines
1.0 KiB
PHP
Raw Normal View History

2021-05-17 15:29:29 +02:00
<?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>
2021-05-18 21:37:02 +02:00
<section id="promociones" class="row">
<div class="code">
<section class="promotions">
<button id="retroceder">Anterior</button>
2021-05-19 11:23:56 +02:00
<a href="promotions/" class="imagen"></a>
2021-05-18 21:37:02 +02:00
<button id="avanzar">Siguiente</button>
</section>
<section class="controls">
2021-05-20 15:29:49 +02:00
<button id="play">&#x25b6;</button>
2021-05-19 10:09:05 +02:00
<button id="stop" disabled>||</button>
2021-05-18 21:37:02 +02:00
</section>
</div>
</section>
2021-05-17 15:29:29 +02:00
';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
?>