SW/cinemas/index.php
2021-05-10 18:15:58 +02:00

33 lines
561 B
PHP

<?php
//General Config File:
require_once('../assets/php/config.php');
?>
<!DOCTYPE HTML>
<!--
Práctica - Sistemas Web | Grupo D
CompluCine - FDI-cines
-->
<html lang="es">
<!-- Head -->
<?php
$template->print_head();
?>
<body>
<!-- Header -->
<?php
$template->print_header();
?>
<!-- Main -->
<?php
$template->print_main();
?>
<!-- Footer -->
<?php
$template->print_footer();
?>
</body>
</html>