layout.php
- Pfad:
src/View/layout.php - Namespace: -
- Zeilen: 82 | Größe: 3,475 Bytes
- Geändert: 2025-12-30 20:44:30 | Gescannt: 2025-12-31 10:22:15
Code Hygiene Score: 100
- Dependencies: 100 (25%)
- LOC: 100 (20%)
- Methods: 100 (20%)
- Secrets: 100 (15%)
- Classes: 100 (10%)
- Magic Numbers: 100 (10%)
Keine Issues gefunden.
Versionen 21
-
v21
2025-12-30 20:44 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v20
2025-12-27 14:04 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v19
2025-12-27 11:45 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v18
2025-12-27 00:27 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v17
2025-12-27 00:16 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v16
2025-12-25 16:29 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v15
2025-12-23 22:49 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v14
2025-12-23 22:31 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v13
2025-12-23 22:20 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v12
2025-12-23 22:20 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v11
2025-12-23 09:33 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v10
2025-12-22 09:22 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v9
2025-12-22 08:02 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v8
2025-12-21 02:15 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v7
2025-12-20 19:38 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v6
2025-12-20 17:47 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v5
2025-12-20 17:06 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v4
2025-12-20 16:59 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v3
2025-12-20 16:53 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v2
2025-12-20 16:39 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation -
v1
2025-12-20 16:31 | claude-code-hook | modified
Claude Code Pre-Hook Backup vor Edit-Operation
Code
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?= htmlspecialchars($title ?? APP_NAME) ?></title>
<link rel="icon" type="image/png" href="https://campus-am-see.de/wp-content/uploads/menu-logo.png">
<link rel="apple-touch-icon" href="https://campus-am-see.de/wp-content/uploads/menu-logo.png">
<link rel="stylesheet" href="/css/designtokens.css">
<link rel="stylesheet" href="/css/nav.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/admin.css">
<link rel="stylesheet" href="/css/home.css">
<script src="/js/htmx.min.js"></script>
</head>
<body>
<header>
<nav class="main-nav">
<a href="/" class="nav-brand">
<img src="https://campus-am-see.de/wp-content/uploads/menu-logo.png" alt="Campus am See" class="nav-logo">
</a>
<button class="nav-toggle" aria-label="Navigation" aria-expanded="false">
<span class="nav-toggle-icon"></span>
</button>
<div class="nav-items">
<div class="nav-dropdown">
<button class="nav-dropdown-btn">Anwendungen</button>
<div class="nav-dropdown-content">
<a href="/chat">KI-Chat</a>
<a href="/content">Content Studio</a>
<a href="/content-pipeline">Content Pipeline</a>
<a href="/semantic-explorer">Semantic Explorer</a>
<a href="https://files.campus.systemische-tools.de/index.php/apps/files/files/3?dir=/Documents" target="_blank">Nextcloud</a>
</div>
</div>
<div class="nav-dropdown">
<button class="nav-dropdown-btn">Entwicklung</button>
<div class="nav-dropdown-content">
<a href="/tasks">Tasks</a>
<a href="/protokoll">Protokoll</a>
<a href="/contracts">Contracts</a>
<a href="/config">Content-Config</a>
<a href="/prompts">Prompts</a>
<a href="/system-explorer">System Explorer</a>
</div>
</div>
<div class="nav-dropdown">
<button class="nav-dropdown-btn">Ressourcen</button>
<div class="nav-dropdown-content">
<a href="/docs">Dokumentation</a>
<a href="/docs/code-hygiene">Code Hygiene</a>
<a href="/backup-restore">File Backup</a>
</div>
</div>
</div>
</nav>
</header>
<main>
<div id="htmx-messages" class="htmx-messages" aria-live="polite"></div>
<?php if (!empty($flashSuccess)): ?>
<div class="alert alert--success"><?= htmlspecialchars($flashSuccess) ?></div>
<?php endif; ?>
<?php if (!empty($flashError)): ?>
<div class="alert alert--error"><?= htmlspecialchars($flashError) ?></div>
<?php endif; ?>
<?= $content ?? '' ?>
</main>
<footer>
<p>© <?= date('Y') ?> <?= APP_NAME ?></p>
</footer>
<script src="/js/app.js"></script>
<script type="module" src="/js/components/data-table.js"></script>
</body>
</html>