2021-05-17 15:29:29 +02:00
|
|
|
<!--
|
|
|
|
Práctica - Sistemas Web | Grupo D
|
|
|
|
CompluCine - FDI-cines
|
|
|
|
-->
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html lang="es">
|
|
|
|
<!-- Head -->
|
|
|
|
<?php
|
|
|
|
$template->print_head();
|
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
|
|
<?php
|
|
|
|
$template->print_header();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!-- Main -->
|
|
|
|
<?php
|
|
|
|
if(!isset($content)) $content = "";
|
|
|
|
$template->print_main($content);
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!-- Section -->
|
|
|
|
<?php
|
|
|
|
$template->print_section($section);
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
<?php
|
|
|
|
$template->print_footer();
|
|
|
|
?>
|
2021-05-25 12:21:50 +02:00
|
|
|
|
|
|
|
<!-- Scripts -->
|
|
|
|
<?php
|
|
|
|
$template->print_scripts();
|
|
|
|
?>
|
2021-05-17 15:29:29 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|