finkenhammer-theme/content/master.blade.php

21 lines
641 B
PHP
Raw Normal View History

2020-10-19 13:50:01 +00:00
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
2020-09-30 09:01:51 +00:00
2021-05-10 20:32:51 +00:00
<head>
@include('template.'.config('settings.template').'.content.head')
2020-09-30 09:01:51 +00:00
</head>
2021-05-10 20:32:51 +00:00
<body>
2021-05-28 09:01:54 +00:00
@include('template.'.config('settings.template').'.content.includes.header')
2020-09-30 09:01:51 +00:00
@yield('content')
2021-05-28 09:01:54 +00:00
@include('template.'.config('settings.template').'.content.includes.footer')
@include('template.'.config('settings.template').'.content.includes.scripts')
2022-11-22 20:26:53 +00:00
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
2020-09-30 09:01:51 +00:00
2021-05-10 20:32:51 +00:00
</body>