1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!doctype html>
- <html lang="fa" dir="rtl">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- CSRF Token -->
- <meta name="csrf-token" content="{{ csrf_token() }}">
- <title>@yield('title')</title>
- <!-- Fonts -->
- <link rel="dns-prefetch" href="//fonts.gstatic.com">
- <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
- <!-- Styles -->
- <link href="{{ mix('css/home.css') }}" rel="stylesheet">
- @yield('style')
- </head>
- <body>
- <div id="app">
- @component('home.layouts.navbar')
- @endcomponent
- @yield('content_top')@yield('content')
- @component('home.layouts.footer')
- @endcomponent
- </div>
- <!-- Scripts -->
- <script>let baseUrl = "{{ URL::to('/') }}";</script>
- @if(!isset($without_home_js))
- <script src="{{ mix('js/home.js') }}"></script>
- @endif
- <script>
- </script>
- @yield('script')
- </body>
- </html>
|