File: example.html

package info (click to toggle)
golang-github-pion-webrtc.v3 3.1.56-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,392 kB
  • sloc: javascript: 595; sh: 28; makefile: 5
file content (34 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (2)
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
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<link href="https://fonts.googleapis.com/css?family=Quicksand:400,500,700" rel="stylesheet">
		<title>{{ .Title }} | Pion</title>
		<style>
			body {
				font-family: "Quicksand", sans-serif;
				font-weight: 400;
				margin: 4em 10%;
			}
		</style>
		<link rel="stylesheet" type="text/css" href="demo.css">
	</head>
	<body>
		<h1>{{ .Title }}</h1>
		<p><a href="/">< Home</a></p> 

		<div>
		{{ template "demo.html" }}
		</div>
	</body>
       {{ if .JS }}
       <script src="demo.js"></script>
       {{ else }}
       <script src="/wasm_exec.js"></script>
       <script>
               const go = new Go();
               WebAssembly.instantiateStreaming(fetch("demo.wasm"), go.importObject).then((result) => {
                       go.run(result.instance);
               });
       </script>
       {{ end }}
</html>