Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-26 09:03:02 +02:00
committed by GitHub
parent a5c8dd4ff8
commit cf3f36c9d4
41 changed files with 5652 additions and 0 deletions

View File

@ -0,0 +1,39 @@
<!--
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();
?>
<!-- Scripts -->
<?php
$template->print_scripts();
?>
</body>
</html>