|
2 | 2 | <html lang="en">
|
3 | 3 | <head>
|
4 | 4 | <meta charset="utf-8">
|
5 |
| - <title>PyScript/Panel Streaming Demo</title> |
6 |
| - |
7 |
| - <link rel=" icon" href=" https://unpkg.com/@holoviz/[email protected]/dist/icons/favicon.ico" type="" > |
| 5 | + <meta charset="utf-8"> |
| 6 | + <meta name="apple-mobile-web-app-capable" content="yes"> |
| 7 | + <meta name="apple-mobile-web-app-status-bar-style" content="default"> |
| 8 | + <meta name="theme-color" content="#000000"> |
8 | 9 | <meta name="name" content="PyScript/Panel Streaming Demo">
|
9 | 10 |
|
| 11 | + <title>PyScript/Panel Streaming Demo</title> |
| 12 | + <link rel="icon" type="image/x-icon" href="./favicon.ico"> |
| 13 | + |
10 | 14 | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" type="text/css" />
|
11 | 15 | <link rel=" stylesheet" href=" https://unpkg.com/@holoviz/[email protected]/dist/css/widgets.css" type=" text/css" />
|
12 | 16 | <link rel=" stylesheet" href=" https://unpkg.com/@holoviz/[email protected]/dist/css/markdown.css" type=" text/css" />
|
13 |
| - <link rel=" stylesheet" href=" https://unpkg.com/@holoviz/[email protected]/dist/css/loading.css" type=" text/css" /> |
14 |
| - <link rel=" stylesheet" href=" https://unpkg.com/@holoviz/[email protected]/dist/css/dataframe.css" type=" text/css" /> |
15 | 17 |
|
16 | 18 | <script type=" text/javascript" src=" https://unpkg.com/[email protected]/dist/js/tabulator.js" ></script>
|
17 | 19 | <script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-2.4.2.js"></script>
|
|
21 | 23 | <script type="text/javascript">
|
22 | 24 | Bokeh.set_log_level("info");
|
23 | 25 | </script>
|
24 |
| - |
| 26 | + |
25 | 27 | <link rel=" stylesheet" href=" https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" >
|
26 | 28 | <link rel=" stylesheet" href=" https://unpkg.com/@holoviz/[email protected]/dist/bundled/bootstraptemplate/bootstrap.css" >
|
27 | 29 | <link rel=" stylesheet" href=" https://unpkg.com/@holoviz/[email protected]/dist/bundled/defaulttheme/default.css" >
|
28 | 30 |
|
29 |
| - <style> |
30 |
| - #sidebar { |
31 |
| - width: 350px; |
32 |
| - } |
33 |
| - </style> |
34 |
| - |
35 | 31 | <script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" ></script>
|
36 | 32 | <script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" ></script>
|
37 | 33 |
|
38 | 34 | <link rel="stylesheet" href="build/pyscript.css" />
|
39 | 35 | <script defer src="build/pyscript.js"></script>
|
40 | 36 | </head>
|
41 |
| - <body> |
42 |
| - <py-env> |
43 |
| - - bokeh |
44 |
| - - numpy |
45 |
| - - pandas |
46 |
| - - panel |
47 |
| - </py-env> |
48 | 37 |
|
| 38 | + <py-env> |
| 39 | + - bokeh |
| 40 | + - numpy |
| 41 | + - pandas |
| 42 | + - panel |
| 43 | + </py-env> |
| 44 | + |
| 45 | + <body> |
49 | 46 | <div class="container-fluid d-flex flex-column vh-100 overflow-hidden" id="container">
|
50 |
| - <nav class="navbar navbar-expand-md navbar-dark sticky-top shadow" style="" id="header"> |
| 47 | + <nav class="navbar navbar-expand-md navbar-dark sticky-top shadow" id="header" style="background-color: #000000;"> |
51 | 48 | <button type="button" class="navbar-toggle collapsed" id="sidebarCollapse">
|
52 |
| - <span class="navbar-toggler-icon"></span> |
53 |
| - </button> |
54 |
| - <div class="app-header"> |
55 |
| - <a class="title" href="/" > Panel</a> |
56 |
| - <span class="title"> -</span> |
57 |
| - <a class="title" href="" > Pyscript Streaming Demo</a> |
58 |
| - </div> |
| 49 | + <span class="navbar-toggler-icon"></span> |
| 50 | + </button> |
| 51 | + <div class="app-header"> |
| 52 | + <a class="navbar-brand app-logo" href="/"> |
| 53 | + <img src="./logo.png" class="app-logo"> |
| 54 | + </a> |
| 55 | + <a class="title" href="" style="color: #f0ab3c;">Panel Streaming Demo</a> |
| 56 | + </div> |
59 | 57 | </nav>
|
60 | 58 |
|
61 | 59 | <div class="row overflow-hidden" id="content">
|
62 | 60 | <div class="col mh-100 float-left" id="main">
|
63 |
| - <div class="bk-root" id="controls" data-root-id="1009"></div> |
| 61 | + <div class="bk-root" id="controls"></div> |
64 | 62 | <div class="row">
|
65 |
| - <div class="bk-root" id="table" data-root-id="1010"></div> |
66 |
| - <div class="bk-root" id="plot" data-root-id="1011"></div> |
| 63 | + <div class="bk-root" id="table"></div> |
| 64 | + <div class="bk-root" id="plot"></div> |
67 | 65 | </div>
|
68 | 66 | </div>
|
69 | 67 | </div>
|
|
0 commit comments