21 lines
820 B
PHP
21 lines
820 B
PHP
<?php
|
||
/**
|
||
* header.php — Encabezado HTML global
|
||
* Variables esperadas: $pageTitle, $activeNav
|
||
*/
|
||
defined('APP_NAME') || require_once __DIR__ . '/../../config/config.php';
|
||
?>
|
||
<!DOCTYPE html>
|
||
<html lang="es" data-theme="<?= $_SESSION['tema'] ?? 'light' ?>">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title><?= htmlspecialchars($pageTitle ?? 'Dashboard') ?> – <?= APP_NAME ?></title>
|
||
<meta name="robots" content="noindex,nofollow">
|
||
<link rel="stylesheet" href="<?= APP_URL ?>/assets/css/style.css">
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
|
||
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.8/css/dataTables.bootstrap5.min.css">
|
||
</head>
|
||
<body>
|
||
<div class="app-wrapper">
|