app.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  6. <title>@yield('title', 'Точка — автомобильный каталог')</title>
  7. @hasSection('meta_description')
  8. <meta name="description" content="@yield('meta_description')"/>
  9. @endif
  10. {{-- Canonical URL --}}
  11. <link rel="canonical" href="{{ request()->url() }}"/>
  12. {{-- Open Graph + Twitter Card + Яндекс.Метрика + Google Analytics --}}
  13. @include('layouts.partials._head_meta')
  14. {{-- Шрифты: Unbounded (заголовки) + Manrope (текст) --}}
  15. <link rel="preconnect" href="https://fonts.googleapis.com"/>
  16. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
  17. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Manrope:wght@300;400;500;600;700&display=swap"/>
  18. {{-- Стили дизайна сайта --}}
  19. <link rel="stylesheet" href="{{ asset('css/site.css') }}"/>
  20. @stack('styles')
  21. </head>
  22. <body>
  23. {{-- Шапка --}}
  24. @include('layouts.partials._header')
  25. {{-- Основной контент страницы --}}
  26. <main>
  27. @yield('content')
  28. </main>
  29. {{-- Подвал + плавающая кнопка TG --}}
  30. @include('layouts.partials._footer')
  31. {{-- JS: navbar scroll, burger, scroll-reveal --}}
  32. <script src="{{ asset('js/site.js') }}" defer></script>
  33. @stack('scripts')
  34. </body>
  35. </html>