12 lines
142 B
PHP
12 lines
142 B
PHP
<?php
|
|
$title = "El Equipo";
|
|
|
|
include("templates/header.html.php");
|
|
?>
|
|
|
|
<h1><?= $title ?></h1>
|
|
|
|
<?php
|
|
include("templates/footer.html.php");
|
|
?>
|