Initiales CMS: Deutschsprachiges Blog-System mit Admin-Bereich

Vollständiges, schlankes PHP/SQLite-CMS für IT-, KI- und Gaming-Inhalte:

- Core: DB-Singleton, Auth mit Passwort-Hashing, Session-Cookies,
  CSRF-Schutz, Login-Rate-Limit, Bild-Upload mit serverseitiger Validierung
- Admin: Dashboard, Artikel/Seiten-Verwaltung mit Quill WYSIWYG-Editor,
  Kategorien, Navigation (Drag & Drop), Medienbibliothek, Profil
- Frontend: Responsive Dark-Theme, Artikel-Grid, Kategorie-Filter,
  Archiv, Paginierung, SEO-Meta-Tags
- Sicherheit: Prepared Statements, HTML-Sanitizer, .htaccess-Schutz
  für sensible Verzeichnisse, PHP-Ausführungsschutz im Upload-Ordner
- Installation: install.php erstellt DB-Schema und Admin-Account

https://claude.ai/code/session_01Xsg4j2t4S9goMuWVpF3ezG
This commit is contained in:
Claude
2026-04-05 20:59:52 +00:00
commit 3c97192386
45 changed files with 2839 additions and 0 deletions

11
templates/_header.php Normal file
View File

@@ -0,0 +1,11 @@
<header class="site-header">
<div class="container header-inner">
<a href="/" class="site-logo"><?= e(SITE_TITLE) ?></a>
<button class="menu-toggle" id="menuToggle" aria-label="Menü">&#9776;</button>
<nav class="site-nav" id="siteNav">
<?php foreach ($navItems as $nav): ?>
<a href="<?= e($nav['url']) ?>"><?= e($nav['label']) ?></a>
<?php endforeach; ?>
</nav>
</div>
</header>