SW/showtimes/index.php

56 lines
1.1 KiB
PHP
Raw Normal View History

2021-04-26 22:40:34 +02:00
<?php
//General Config File:
require_once('../assets/php/config.php');
2021-05-12 22:24:10 +02:00
/*
//Page-specific content:
$section = '<!-- Films -->
<section id="films_billboard">
<div class="row">
'.$template->print_fimls().'
</div>
</section>';
//General page content:
require RAIZ_APP.'/HTMLtemplate.php';
*/
2021-04-26 22:40:34 +02:00
?>
2021-05-10 18:15:58 +02:00
<!DOCTYPE HTML>
2021-04-26 22:40:34 +02:00
<!--
2021-05-03 21:58:47 +02:00
Práctica - Sistemas Web | Grupo D
2021-04-26 22:40:34 +02:00
CompluCine - FDI-cines
-->
<html lang="es">
<!-- Head -->
<?php
$template->print_head();
?>
<body>
<!-- Header -->
<?php
$template->print_header();
?>
<!-- Main -->
<?php
$template->print_main();
?>
<!-- Films -->
<section id="films_billboard">
<div class='row'>
2021-05-02 16:01:05 +02:00
<?php
$template->print_fimls();
?>
2021-04-26 22:40:34 +02:00
</div>
</section>
<!-- Footer -->
<?php
$template->print_footer();
?>
</body>
</html>