Files
postshop-backend/resources/views/web/themes/shella/layouts/app.blade.php
2026-02-03 15:31:29 +05:00

41 lines
1.2 KiB
PHP

<!doctype html>
<!--[if IE 9]>
<html class="ie9 no-js supports-no-cookies" lang="en"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html class="no-js supports-no-cookies" lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <!--<![endif]-->
<head>
@include('web.themes.shella.layouts.additional.meta-tags')
@include('web.themes.shella.layouts.additional.favicons')
<title>
@isset($title)
{{ "{$title} |" }}
@endisset
{{ config('app.name') }}
</title>
@include('web.themes.shella.layouts.additional.css')
@include('web.themes.shella.layouts.additional.loader-script')
@include('web.themes.shella.layouts.additional.backend-datas')
@stack('header-css')
@stack('header-javascript')
@include('web.themes.general.js.google-analitics')
</head>
<body
id="@isset($page_name) {{ $page_name }} @else index @endisset"
class="@isset($body_class) {{ $body_class }} @else template-index theme-css-animate @endisset"
data-currency-multiple="false"
>
@include('web.themes.shella.layouts.header')
@yield('content')
@include('web.themes.shella.layouts.footer')
@include('web.themes.shella.layouts.js')
@stack('footer-javascript')
</body>
</html>