123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>X•Y•Z</title>
- <!-- Fonts -->
- <link href="https://fonts.googleapis.com/css?family=Nunito:200,600,700" rel="stylesheet">
- {{-- Bootstrap --}}
- <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <link rel="stylesheet" href="/css/bootstrap.min.css">
- <link rel="stylesheet" href="/fontawesome-free/css/all.min.css">
- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
- <link rel="stylesheet" href="/css/meeting.css">
- <script src="https://static.opentok.com/v2/js/opentok.js"></script>
- <link href="/noty/noty.css" rel="stylesheet">
- <link href="/noty/themes/mint.css" rel="stylesheet">
- <script src="/noty/noty.js" type="text/javascript"></script>
- </head>
- <body class="p-0 m-0">
- @yield('content')
- </body>
- </html>
|