Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-17 15:29:29 +02:00
committed by GitHub
parent 4e92236fab
commit 6a9b6cd8a4
72 changed files with 8866 additions and 0 deletions

View File

@ -0,0 +1,34 @@
<!--
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();
?>
</body>
</html>