12345678910111213141516171819202122 |
- <!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">
- <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <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">
- <iframe src="{{ $page }}" frameborder="0" class="h-100 w-100"></iframe>
- </div>
- <div class="col-3 border-left">
- Meeting stuff goes here
- </div>
- </div>
- </body>
- </html>
|