123456789101112131415161718192021222324252627 |
- <!doctype html>
- <html lang="en" class="h-100">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link rel="stylesheet" href="/css/bootstrap.min.css">
- <title>Meeting Center</title>
- </head>
- <body class="d-flex align-items-stretch h-100">
- <div class="row w-100">
- <div class="col-9 pr-0 app-left-panel">
- <iframe src="{{ $page }}" frameborder="0" class="h-100 w-100"></iframe>
- </div>
- <div class="col-3 border-left app-right-panel">
- Meeting stuff goes here
- </div>
- </div>
- <script src="/AdminLTE-3.0.5/plugins/jquery/jquery.min.js"></script>
- <link rel="stylesheet" href="/v-splitter-px/v-splitter.css">
- <script src="/v-splitter-px/v-splitter.js"></script>
- <script>
- initVSplitter('stag-mc-main', $('.app-left-panel'), $('.app-right-panel'));
- </script>
- </body>
- </html>
|