39 lines
550 B
HTML
Executable File
39 lines
550 B
HTML
Executable File
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<script src="/marked.min.js"></script>
|
|
<script src="http://kimird.com/bricks/bricks.js"></script>
|
|
<script>
|
|
const opts =
|
|
{
|
|
"widget": {
|
|
"widgettype":"VBox",
|
|
"options":{
|
|
},
|
|
"subwidgets":[
|
|
{
|
|
"widgettype":"Title1",
|
|
"options":{
|
|
"text":"Pic Viewer",
|
|
"i18n":true
|
|
}
|
|
},
|
|
{
|
|
"widgettype":"MarkdownViewer",
|
|
"options":{
|
|
"md_url":"test1.md"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
;
|
|
const app = new BricksApp(opts);
|
|
app.run();
|
|
</script>
|
|
</body>
|
|
</html>
|