39 lines
965 B
PHP
39 lines
965 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>@yield('title', $domainName ?? config('app.name', 'Laravel'))</title>
|
|
|
|
<!-- Domain-spezifisches Favicon -->
|
|
<link rel="icon" href="{{ asset(\App\Helpers\ThemeHelper::getFaviconPath()) }}">
|
|
|
|
<!-- Fonts -->
|
|
@include('partials.local-fonts')
|
|
|
|
@php
|
|
$font = \App\Helpers\ThemeHelper::getFont();
|
|
$theme = config('app.theme', 'businessportal24');
|
|
@endphp
|
|
|
|
@vite([\App\Helpers\ThemeHelper::getThemeCssPath(), 'resources/js/app.js'], 'build/' . $theme)
|
|
|
|
|
|
<!-- Additional Styles -->
|
|
@stack('styles')
|
|
|
|
</head>
|
|
|
|
<body class="antialiased">
|
|
|
|
<!-- TopBar - statisch oben -->
|
|
|
|
@yield('content')
|
|
<!-- Additional Scripts -->
|
|
@stack('scripts')
|
|
</body>
|
|
|
|
</html>
|