12 lines
139 B
PHP
Raw Normal View History

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