ceu-notes/2/EIE/assignments/lingua-ignis/website/site/team.html.php

12 lines
142 B
PHP
Raw Normal View History

2023-01-08 17:15:21 +00:00
<?php
2023-01-08 17:15:37 +00:00
$title = "El Equipo";
2023-01-08 17:15:21 +00:00
include("templates/header.html.php");
?>
<h1><?= $title ?></h1>
<?php
include("templates/footer.html.php");
?>