Files
productalert/resources/views/layouts/front/app.blade.php

43 lines
968 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
@include('googletagmanager::head')
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{!! SEOMeta::generate() !!}
{!! OpenGraph::generate() !!}
{!! Twitter::generate() !!}
{!! JsonLdMulti::generate() !!}
<meta property="fb:app_id" content="{{ config('seotools.fb_app_id') }}" />
@vite('resources/sass/front-app.scss')
<!-- Custom styles for this Page-->
@yield('custom_styles')
@include('layouts.front.header')
</head>
<body>
@include('googletagmanager::body')
@include('layouts.front.navigation')
@yield('content')
@include('layouts.front.footer')
<!-- Core plugin JavaScript-->
@vite('resources/js/front-app.js')
<!-- Page level custom scripts -->
@yield('custom_scripts')
</body>
</html>