master.blade.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!--=====================================
  5. META TAG PART START
  6. =======================================-->
  7. <!-- REQUIRE META -->
  8. <meta charset="UTF-8">
  9. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  10. <!-- AUTHOR META -->
  11. <meta name="author" content="point2u">
  12. <meta name="email" content="p2u@globalmsq.com">
  13. {{-- <meta name="profile" content="https://themeforest.net/user/mironcoder">--}}
  14. <!-- TEMPLATE META -->
  15. <meta name="csrf-token" content="{{ csrf_token() }}">
  16. {{-- <meta name="name" content="Greeny">--}}
  17. {{-- <meta name="title" content="Greeny - eCommerce HTML Template">--}}
  18. {{-- <meta name="keywords" content="organic, food, shop, ecommerce, store, html, bootstrap, template, agriculture, vegetables, webshop, farm, grocery, natural, online store">--}}
  19. <!--=====================================
  20. META-TAG PART END
  21. =======================================-->
  22. @stack('meta')
  23. <!-- WEBPAGE TITLE -->
  24. <title>@yield('title', env('APP_NAME'))</title>
  25. <!-- FAVICON -->
  26. <link rel="icon" href="{{ msset(env('FAVICON_PATH')) }}">
  27. @php $basePath = '/themes/pro/modunawa/resources'; @endphp
  28. @include('views.partial.site.meta', [ 'basePath' => $basePath ])
  29. @include('views.partial.site.scripts', [ 'basePath' => $basePath ])
  30. @stack('css')
  31. </head>
  32. <body>
  33. <div class="backdrop"></div>
  34. <a class="backtop fas fa-arrow-up" href="#"></a>
  35. @include('layouts.js-lang')
  36. @include('vendor.lara-izitoast.toast')
  37. @include('views.layouts.header-top')
  38. @include('views.layouts.header-part')
  39. @include('views.layouts.navbar-part')
  40. @include('views.layouts.category-sidebar')
  41. @include('views.layouts.cart-sidebar')
  42. @include('views.layouts.nav-sidebar')
  43. @include('views.layouts.mobile-menu')
  44. @include('views.layouts.product-view')
  45. @yield('content')
  46. {{-- @include('views.layouts.news-part', [ 'basePath' => $basePath ])--}}
  47. @include('views.layouts.intro-part')
  48. @include('views.layouts.footer-part')
  49. <div id="element_in_which_to_insert">
  50. @yield('modal')
  51. @stack('modal')
  52. </div>
  53. @yield('js')
  54. @stack('js')
  55. </body>
  56. <script>
  57. window.env = (@json($_ENV));
  58. window.Member = @json(session('member'));
  59. window.CodeTitle = @json($codeTitle ?? '');
  60. </script>
  61. </html>