Upload index.html
Browse files- templates/index.html +39 -0
templates/index.html
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8" />
|
5 |
+
<meta name="viewport" content="width=device-width" />
|
6 |
+
<title>MedBench static Space</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
margin: 0;
|
10 |
+
}
|
11 |
+
|
12 |
+
.space {
|
13 |
+
max-width: 100%;
|
14 |
+
max-height: 100%;
|
15 |
+
width: 100vw;
|
16 |
+
height: 100vh;
|
17 |
+
overflow: hidden;
|
18 |
+
}
|
19 |
+
|
20 |
+
.iframe {
|
21 |
+
min-width: 100%;
|
22 |
+
min-height: calc(100% + 64px);
|
23 |
+
margin-top: -64px;
|
24 |
+
}
|
25 |
+
</style>
|
26 |
+
</head>
|
27 |
+
|
28 |
+
<body>
|
29 |
+
<div class="space">
|
30 |
+
<iframe
|
31 |
+
class="iframe"
|
32 |
+
allowfullscreen="true"
|
33 |
+
frameborder="0"
|
34 |
+
src="https://medbench.opencompass.org.cn/leaderboard"
|
35 |
+
>
|
36 |
+
</iframe>
|
37 |
+
</div>
|
38 |
+
</body>
|
39 |
+
</html>
|