49 lines
726 B
HTML
49 lines
726 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="http://kimird.com/bricks/css/bricks.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<script src="http://kimird.com/bricks/bricks.js"></script>
|
||
|
|
||
|
<script>
|
||
|
const opts =
|
||
|
{
|
||
|
"widget": {
|
||
|
"widgettype":"Toolbar",
|
||
|
"options":{
|
||
|
"target":null,
|
||
|
"orientation":"horizontal",
|
||
|
"tool_margin":"15px",
|
||
|
"tools":[
|
||
|
{
|
||
|
"name":"c",
|
||
|
"Label":"C",
|
||
|
"icon":null
|
||
|
},
|
||
|
{
|
||
|
"name":"javascript",
|
||
|
"Label":"JavaScript",
|
||
|
"icon":null
|
||
|
},
|
||
|
{
|
||
|
"name":"php",
|
||
|
"Label":"PHP",
|
||
|
"icon":null
|
||
|
},
|
||
|
{
|
||
|
"name":"python",
|
||
|
"Label":"Python",
|
||
|
"icon":null
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
;
|
||
|
const app = new BricksApp(opts);
|
||
|
app.run();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|