mc.blade.php 1.0 KB

123456789101112131415161718192021222324252627
  1. <!doctype html>
  2. <html lang="en" class="h-100">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="/css/bootstrap.min.css">
  9. <title>Meeting Center</title>
  10. </head>
  11. <body class="d-flex align-items-stretch h-100">
  12. <div class="row w-100">
  13. <div class="col-9 pr-0 app-left-panel">
  14. <iframe src="{{ $page }}" frameborder="0" class="h-100 w-100"></iframe>
  15. </div>
  16. <div class="col-3 border-left app-right-panel">
  17. Meeting stuff goes here
  18. </div>
  19. </div>
  20. <script src="/AdminLTE-3.0.5/plugins/jquery/jquery.min.js"></script>
  21. <link rel="stylesheet" href="/v-splitter-px/v-splitter.css">
  22. <script src="/v-splitter-px/v-splitter.js"></script>
  23. <script>
  24. initVSplitter('stag-mc-main', $('.app-left-panel'), $('.app-right-panel'));
  25. </script>
  26. </body>
  27. </html>