39 lines
550 B
HTML
39 lines
550 B
HTML
|
<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>
|