PHP_AdminTool_Projekt/public/views/partials/head.php
2025-11-29 06:32:50 +00:00

31 lines
1007 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Partielle View für den <head>-Bereich und den Beginn des HTML-Body.
*
* Aufgaben:
* - Setzt Zeichensatz und Dokumenttitel (inkl. optionalem Seitentitel).
* - Bindet die CSS-Ressourcen des SB-Admin-2-Templates sowie DataTables ein.
* - Öffnet das <body>-Element und den Wrapper für das Layout.
*
* WICHTIG:
* - Diese Datei wird ausschließlich über das zentrale Layout (layout.php) eingebunden.
*/
?>
<head>
<meta charset="utf-8">
<title>AD Admin Tool<?= isset($pageTitle) ? ' ' . htmlspecialchars($pageTitle, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8') : '' ?></title>
<!-- Custom fonts for this template-->
<link href="../../vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<!-- Google Fonts oder lokal, je nach Setup -->
<link href="../../css/sb-admin-2.min.css" rel="stylesheet">
<!-- DataTables CSS (falls benötigt) -->
<link href="../../vendor/datatables/dataTables.bootstrap4.min.css" rel="stylesheet">
</head>