The problem is:
Warning: include(../Vistas/plantilla.php): failed to open stream: No such file or directory in C:\xampp\htdocs\SAE\index.php on line 2
This is the template.php file
/*****************************************************************/
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include ('../Vistas/Modulos/Head.php');
?>
</head>
<body class="animsition">
<div class="page-wrapper">
<!-- HEADER MOBILE-->
<?php
include ('../Vistas/Modulos/HeaderMobile.php');
?>
<!-- END HEADER MOBILE-->
<!-- MENU SIDEBAR-->
<?php
include ('../Vistas/Modulos/MenuSidebar.php');
?>
<!-- END MENU SIDEBAR-->
<!-- PAGE CONTAINER-->
<div class="page-container">
<!-- HEADER DESKTOP-->
<?php
include ('../Vistas/Modulos/HeaderDesktop.php');
?>
<!-- HEADER DESKTOP-->
<!-- MAIN CONTENT-->
<?php
include ('../Vistas/Modulos/MainContent.php');
?>
<!-- END MAIN CONTENT-->
<!-- END PAGE CONTAINER-->
</div>
</div>
<?php
include ('../Vistas/Modulos/script.php');
?>
</body>
</html>
<!-- end document-->
And this is the index.php file
<?php
include ('../Vistas/plantilla.php');
?>