themes-getlumino/content/master.blade.php

22 lines
797 B
PHP
Raw Normal View History

2022-01-01 14:51:36 +00:00
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
@include('template.'.config('settings.template').'.content.includes.meta')
@include('template.'.config('settings.template').'.content.includes.css')
@include('template.'.config('settings.template').'.content.includes.integrations')
@yield('head')
</head>
<body>
2022-01-01 17:59:24 +00:00
2022-01-01 19:02:11 +00:00
<nav class="bg-ci-animated">
2022-01-01 17:59:24 +00:00
<div class="container">
2022-01-01 19:02:11 +00:00
<a href="{{url('/')}}" class="fs-4 fw-bold text-decoration-none">Lumino Themes</a>
2022-01-01 17:59:24 +00:00
</div>
</nav>
2022-01-01 14:51:36 +00:00
@yield('content')
@include('template.'.config('settings.template').'.content.includes.footer')
@include('template.'.config('settings.template').'.content.includes.scripts')
@yield('scripts')
@yield('end_scripts')
</body>
</html>