This commit is contained in:
2023-09-18 19:08:35 +00:00
parent d6bc6dde37
commit 76fe06b0df
28 changed files with 1259 additions and 1064 deletions

View File

@@ -2,7 +2,7 @@
require "include/constantes.php";
function html_header($title, $header = null, $links = [])
{
?>
?>
<nav class="navbar sticky-top navbar-light bg-white">
<header class="container-fluid">
<div class="menu">
@@ -14,18 +14,21 @@ function html_header($title, $header = null, $links = [])
<div class="row bg-info mx-0 barra-gris">
<?php
if ($header != null) {
?>
?>
<div class="marco">
<div class="col-sm-12">
<h2 class="text-muted"><?= $header; ?>
<h2 class="text-muted">
<?= $header; ?>
</div>
</div>
<?php } ?>
<div class="marco">
<div class="col-sm-12 py-3">
<h2 class="text-uppercase"><?= $title; ?></h2>
<h2 class="text-uppercase">
<?= $title; ?>
</h2>
</div>
</div>
</div>
<?php
}
<?php
}