28 lines
681 B
HTML
28 lines
681 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/bricks/css/bricks.css" />
|
|
<link href="https://vjs.zencdn.net/8.3.0/video-js.min.css" rel="stylesheet">
|
|
<title>Standard Html</title>
|
|
</head>
|
|
<body>
|
|
<script src="https://vjs.zencdn.net/8.3.0/video.min.js"></script>
|
|
<script src="/bricks/bricks.js"></script>
|
|
<script>
|
|
const opts = {
|
|
"widget": {
|
|
"widgettype":"urlwidget",
|
|
"options":{
|
|
"url":"tree.json"
|
|
}
|
|
}
|
|
};
|
|
const app = new BricksApp(opts);
|
|
app.run();
|
|
</script>
|
|
</body>
|
|
</html>
|