2026-02-04 23:31:53 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use MintyPHP\Buffer;
|
|
|
|
|
|
|
|
|
|
$defaultTitle = appTitle();
|
|
|
|
|
$user = $_SESSION['user'] ?? [];
|
2026-02-11 19:28:12 +01:00
|
|
|
$theme = currentTheme();
|
2026-02-04 23:31:53 +01:00
|
|
|
$primaryVars = appPrimaryCssVars();
|
2026-03-04 15:56:58 +01:00
|
|
|
$viewAuth = is_array($viewAuth ?? null) ? $viewAuth : [];
|
|
|
|
|
$viewAuth['layout'] = is_array($viewAuth['layout'] ?? null) ? $viewAuth['layout'] : [];
|
2026-02-11 19:28:12 +01:00
|
|
|
$pageTitle = $defaultTitle;
|
|
|
|
|
ob_start();
|
|
|
|
|
Buffer::get('title');
|
|
|
|
|
$bufferTitle = trim((string) ob_get_clean());
|
|
|
|
|
if ($bufferTitle !== '') {
|
|
|
|
|
$pageTitle = $bufferTitle . ' - ' . $defaultTitle;
|
2026-02-04 23:31:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
<!DOCTYPE html>
|
add composer-unused, comprehensive docs, and project restructure
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks
- Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists
- Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services
- Add Microsoft OIDC SSO, API token management, and user lifecycle features
- Add swagger-ui vendor integration and OpenAPI spec
- Add production Docker setup and bin/ scripts
- Update composer dependencies, config, templates, and frontend assets throughout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 15:27:35 +01:00
|
|
|
<html data-theme="<?php e($theme); ?>" data-contrast="normal" data-asset-base="<?php e(asset('')); ?>" class="no-js" <?php if ($primaryVars !== ''): ?>style="<?php e($primaryVars); ?>" <?php endif; ?>>
|
2026-02-04 23:31:53 +01:00
|
|
|
|
|
|
|
|
<head>
|
2026-03-05 08:26:51 +01:00
|
|
|
<script src="<?php e(assetVersion('js/app-boot.js')); ?>"></script>
|
2026-02-04 23:31:53 +01:00
|
|
|
<base href="<?php e(localeBase()); ?>">
|
2026-02-11 19:28:12 +01:00
|
|
|
<title><?php e($pageTitle); ?></title>
|
2026-02-04 23:31:53 +01:00
|
|
|
<meta property="og:site_name" content="<?php e($defaultTitle); ?>">
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="<?php e(appFaviconUrl('favicon-32x32.png')); ?>">
|
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="<?php e(appFaviconUrl('favicon-16x16.png')); ?>">
|
|
|
|
|
<link rel="apple-touch-icon" href="<?php e(appFaviconUrl('apple-touch-icon.png')); ?>">
|
|
|
|
|
<link rel="manifest" href="<?php e(asset('favicon/site.webmanifest')); ?>">
|
add composer-unused, comprehensive docs, and project restructure
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks
- Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists
- Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services
- Add Microsoft OIDC SSO, API token management, and user lifecycle features
- Add swagger-ui vendor integration and OpenAPI spec
- Add production Docker setup and bin/ scripts
- Update composer dependencies, config, templates, and frontend assets throughout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 15:27:35 +01:00
|
|
|
<?php renderTemplateStyles('default'); ?>
|
|
|
|
|
<?php renderPageStyles(); ?>
|
2026-02-04 23:31:53 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2026-03-05 12:51:53 +01:00
|
|
|
<a class="app-skip-link" href="#app-main-content"><?php e(t('Skip to main content')); ?></a>
|
2026-02-04 23:31:53 +01:00
|
|
|
<div class="app-container">
|
add composer-unused, comprehensive docs, and project restructure
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks
- Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists
- Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services
- Add Microsoft OIDC SSO, API token management, and user lifecycle features
- Add swagger-ui vendor integration and OpenAPI spec
- Add production Docker setup and bin/ scripts
- Update composer dependencies, config, templates, and frontend assets throughout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 15:27:35 +01:00
|
|
|
<?php require __DIR__ . '/partials/app-main-aside-icon-bar.phtml'; ?>
|
|
|
|
|
<?php require __DIR__ . '/partials/app-main-aside.phtml'; ?>
|
2026-02-04 23:31:53 +01:00
|
|
|
<div class="app-main">
|
|
|
|
|
<main>
|
add composer-unused, comprehensive docs, and project restructure
- Add icanhazstring/composer-unused as dev dependency for dependency hygiene checks
- Add German documentation (docs/) covering architecture, conventions, workflows, and developer checklists
- Add API layer (ApiAuth, ApiBootstrap, ApiResponse), audit, scheduler, custom fields, and SSO services
- Add Microsoft OIDC SSO, API token management, and user lifecycle features
- Add swagger-ui vendor integration and OpenAPI spec
- Add production Docker setup and bin/ scripts
- Update composer dependencies, config, templates, and frontend assets throughout
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-22 15:27:35 +01:00
|
|
|
<?php require __DIR__ . '/partials/app-topbar.phtml'; ?>
|
2026-03-05 12:51:53 +01:00
|
|
|
<div id="app-main-content" class="app-main-content" tabindex="-1">
|
2026-02-04 23:31:53 +01:00
|
|
|
<?php require __DIR__ . '/partials/app-flash.phtml'; ?>
|
|
|
|
|
<?php Buffer::get('html'); ?>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
<?php require __DIR__ . '/partials/app-footer.phtml'; ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-03-05 08:26:51 +01:00
|
|
|
<script src="<?php e(assetVersion('vendor/fslightbox/fslightbox.js')); ?>"></script>
|
2026-02-11 19:28:12 +01:00
|
|
|
<script type="module" src="<?php e(assetVersion('js/app-init.js')); ?>"></script>
|
2026-02-04 23:31:53 +01:00
|
|
|
</body>
|
|
|
|
|
|
2026-03-04 15:56:58 +01:00
|
|
|
</html>
|