forked from skyplane-project/paper-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 2.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>Skyplane optimizer demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<style>
/* bootstrap header and all elements at z-index 100 */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
/* background is white */
background-color: #fff;
}
</style>
</head>
<body>
<!-- header and navbar -->
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="https://github.com/skyplane-project/skyplane" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
<svg class="bi me-2" width="40" height="32"
<use xlink:href="#bootstrap" />
</svg>
<span class="fs-4">
<img src="static/icon.png" alt="Skyplane logo" height="50">
<span style="font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 600;">Skyplane optimizer</span>
</span>
</a>
<ul class="nav nav-pills">
<li class="nav-item">
<iframe class="d-none d-md-block" src="https://ghbtns.com/github-btn.html?user=skyplane-project&repo=skyplane&type=star&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
</li>
</ul>
</header>
<iframe src="https://skyplane-optimizer.streamlitapp.com/?embedded=true" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; z-index: 0;">
Your browser doesn't support iframes, please visit <a href="http://3.236.164.28:8080/">http://3.236.164.28:8080/</a>
</iframe>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>