Spaces:
Running
Running
Ok should be good now
Browse files- README.md +10 -3
- index.html +18 -3
README.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Pytorch Meetup
|
3 |
+
emoji: 🔥
|
4 |
+
colorFrom: purple
|
5 |
+
colorTo: purple
|
6 |
+
sdk: static
|
7 |
+
pinned: false
|
8 |
+
---
|
9 |
+
|
10 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
@@ -1,3 +1,18 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html>
|
2 |
+
|
3 |
+
<script type="text/javascript">
|
4 |
+
|
5 |
+
function detectBrowser()
|
6 |
+
{
|
7 |
+
var slashIndex = window.location.href.lastIndexOf("/");
|
8 |
+
var cropped = window.location.href.slice(0,slashIndex+1);
|
9 |
+
|
10 |
+
window.location.replace(cropped + "assets/player/KeynoteDHTMLPlayer.html");
|
11 |
+
}
|
12 |
+
|
13 |
+
</script>
|
14 |
+
|
15 |
+
<body bgcolor="black" onload="detectBrowser()">
|
16 |
+
</body>
|
17 |
+
|
18 |
+
</html>
|