blank.blade.php 569 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{{ config('app.name', 'Laravel') }}</title>
  7. <link rel="dns-prefetch" href="//pixelfed.nyc3.digitaloceanspaces.com">
  8. <link rel="dns-prefetch" href="//use.fontawesome.com">
  9. <script src="{{ mix('js/app.js') }}" defer></script>
  10. <link href="{{ mix('css/app.css') }}" rel="stylesheet">
  11. @stack('styles')
  12. </head>
  13. <body>
  14. @yield('content')
  15. </body>
  16. </html>