meeting.blade.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>X•Y•Z</title>
  8. <!-- Fonts -->
  9. <link href="https://fonts.googleapis.com/css?family=Nunito:200,600,700" rel="stylesheet">
  10. {{-- Bootstrap --}}
  11. <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  12. <link rel="stylesheet" href="/css/bootstrap.min.css">
  13. <link rel="stylesheet" href="/fontawesome-free/css/all.min.css">
  14. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  15. <link rel="stylesheet" href="/css/meeting.css">
  16. <script src="https://static.opentok.com/v2/js/opentok.js"></script>
  17. <link href="/noty/noty.css" rel="stylesheet">
  18. <link href="/noty/themes/mint.css" rel="stylesheet">
  19. <script src="/noty/noty.js" type="text/javascript"></script>
  20. </head>
  21. <body class="p-0 m-0">
  22. @yield('content')
  23. </body>
  24. </html>