Skip to content

Instantly share code, notes, and snippets.

@shanerbaner82
Created February 1, 2021 20:43
Show Gist options
  • Save shanerbaner82/f16902b138005fff20f3765b23f41ccd to your computer and use it in GitHub Desktop.
Save shanerbaner82/f16902b138005fff20f3765b23f41ccd to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>
@yield('title')
</title>
<!-- META -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="@yield('meta-description')">
<meta name="author" content="dettlaffinc.com">
<meta name="msvalidate.01" content="C2399A3AA860E8AB5A816DEC657CD441"/>
<meta name="p:domain_verify" content="6507a70c8b918da1664f642c4908b29f"/>
<meta name="_token" content="{!! csrf_token() !!}"/>
<!-- FAVICON -->
<link rel="shortcut icon" href="{{asset('/assets/img/favicon.ico')}}">
<!-- SCRIPTS -->
<x-frontend.global-header-scripts />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="{{ mix('assets/css/tailwind.css') }}">
@stack('styles')
<!-- FONT -->
<link rel="preconnect" href="https://fonts.googleapis.com">
{{-- <script src="https://polyfill.io/v3/polyfill.min.js?flags=gated&rum=true&features=es6%2Ces5%2Cdefault"></script>--}}
{{-- ALLOW OTHER PAGES TO LOAD CUSTOM SCRIPTS --}}
@stack('header-scripts')
</head>
<body class="no-trans front-page tw-antialiased tw-font-lato">
<x-frontend.google-body-scripts />
<x-frontend.refill-button />
{{-- REFACTOR SCROLL TO TOP --}}
{{-- <div class="scrollToTop"><i class="fa fa-angle-up"></i></div>--}}
{{-- REFACTOR SIGNUP BANNER --}}
{{-- <signup-banner message="{{ config('nuimage.site_messages.optin_message') }}" ipaddress={{ request()->ip() }}></signup-banner>--}}
<div>
<div class="tw-bg-white">
{{-- @yield('top')--}}
@yield('content')
<footer id="footer" class="clearfix">
@include('includes.footer.footer')
@if(config("nuimage.site_messages.show_coupon_modal"))
@include('includes.ads.offer_coupon_modal')
@endif
</footer>
<!-- footer end -->
</div>
{{-- MUST REFACTOR FLASH NOTIFICATIONS --}}
{{-- <flash-message></flash-message> --}}
</div>
<x-frontend.global-footer-scripts />
@stack('footer-scripts')
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment