forked from sahilatahar/Video-Player
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathfeedplayer.html
More file actions
39 lines (31 loc) · 1.26 KB
/
Copy pathfeedplayer.html
File metadata and controls
39 lines (31 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="src/assets/favicons/favicon.png" />
<meta name="theme-color" content="#ffffff" />
<title>Feed Player</title>
<script type="text/javascript" src="https://model.earth/localsite/js/localsite.js?showheader=true"></script>
<!--
feedplayer.html is sent to dist/index.html
feedplayer.html allows src/main.jsx to be sent into the dist folder since what's referenced in the code gets included in dist.
feedplayer.html is not used by embed-player.html embedding example.
-->
<script>
// Only external raw files can be loaded into the dev site.
loadMarkdown("https://raw.githubusercontent.com/ModelEarth/feed/refs/heads/main/dev.md", "devDiv", "_parent");
loadMarkdown("https://raw.githubusercontent.com/ModelEarth/feed/refs/heads/main/README.md", "readmeDiv", "_parent");
</script>
</head>
<body>
<div class="content contentpadding">
<div id="playerRoot"></div>
<script type="module" src="src/main.jsx"></script>
<div class="content contentpadding large-list" style="padding-top: 10px">
<div id="devDiv"></div>
<div id="readmeDiv"></div>
</div>
</div>
</body>
</html>