Add files via upload
This commit is contained in:
parent
4a3631cf09
commit
fd587dcf22
@ -432,7 +432,7 @@ main img {
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
}
|
||||
.promotions img {
|
||||
.promotions a {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
display: block;
|
||||
|
@ -1,5 +1,5 @@
|
||||
window.onload = function (promotions) {
|
||||
// Variables
|
||||
// Promociones (Cambiar por el contenido del array "promotions")
|
||||
const IMAGENES = [
|
||||
'../img/promos/promo_vuelve.jpg',
|
||||
'../img/promos/promo_palomitas.jpg',
|
||||
|
@ -38,6 +38,7 @@
|
||||
case strpos($this->page, 'logout'): $this->page = 'Cerrar Sesión'; break;
|
||||
case strpos($this->page, 'register'): $this->page = 'Registro de Usuario'; break;
|
||||
case strpos($this->page, 'showtimes'): $this->page = 'Cartelera'; break;
|
||||
case strpos($this->page, 'promotions'): $this->page = 'Promociones'; break;
|
||||
case strpos($this->page, 'cinemas'): $this->page = 'Nuestros Cines'; break;
|
||||
case strpos($this->page, 'about_us'): $this->page = 'Sobre FDI-Cines'; $this->prefix = '../../'; break;
|
||||
case strpos($this->page, 'terms'): $this->page = 'Términos y Condiciones'; $this->prefix = '../../'; break;
|
||||
@ -107,6 +108,7 @@
|
||||
<ul>
|
||||
<a href='{$prefix}'><li>Inicio</li></a>
|
||||
<a href='{$prefix}showtimes/'><li>Cartelera</li></a>
|
||||
<a href='{$prefix}promotions/'><li>Promociones</li></a>
|
||||
<a href='{$prefix}cinemas/'><li>Nuestros Cines</li></a>
|
||||
<a href='{$prefix}fdicines/miembros/'><li>Quiénes somos</li></a>
|
||||
<a href='{$prefix}contacto/'><li>Contacto</li></a>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<div class="code">
|
||||
<section class="promotions">
|
||||
<button id="retroceder">Anterior</button>
|
||||
<img class="imagen" />
|
||||
<a href="promotions/" class="imagen"></a>
|
||||
<button id="avanzar">Siguiente</button>
|
||||
</section>
|
||||
<section class="controls">
|
||||
|
14
promotions/index.php
Normal file
14
promotions/index.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
//General Config File:
|
||||
require_once('../assets/php/config.php');
|
||||
|
||||
//Specific page content:
|
||||
$section = '<!-- Promotions -->
|
||||
<section id="promociones">
|
||||
|
||||
</section>
|
||||
';
|
||||
|
||||
//General page content:
|
||||
require RAIZ_APP.'/HTMLtemplate.php';
|
||||
?>
|
Loading…
Reference in New Issue
Block a user