master-mem.blade.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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="mironcoder">
  12. <meta name="email" content="mironcoder@gmail.com">
  13. <meta name="profile" content="https://themeforest.net/user/mironcoder">
  14. <!-- TEMPLATE META -->
  15. <meta name="name" content="Greeny">
  16. <meta name="title" content="Greeny - eCommerce HTML Template">
  17. <meta name="keywords" content="organic, food, shop, ecommerce, store, html, bootstrap, template, agriculture, vegetables, webshop, farm, grocery, natural, online store">
  18. <!--=====================================
  19. META-TAG PART END
  20. =======================================-->
  21. @stack('meta')
  22. <!-- WEBPAGE TITLE -->
  23. <title>@yield('title', env('APP_NAME'))</title>
  24. <!-- FAVICON -->
  25. <link rel="icon" href="{{ msset(env('FAVICON_PATH')) }}">
  26. @php $basePath = '/themes/pro/modunawa/resources'; @endphp
  27. @include('views.partial.site.meta', [ 'basePath' => $basePath ])
  28. @include('views.partial.site.scripts', [ 'basePath' => $basePath ])
  29. @stack('css')
  30. </head>
  31. <body>
  32. @yield('content')
  33. </body>
  34. </html>