bliss/views/workshop/editor.eta
HRG @ SCExC 23414c7b66 wow
2024-06-02 00:39:30 -04:00

25 lines
No EOL
706 B
Text

<html>
<head>
<link rel="stylesheet" href="/css/xp.css">
</head>
<body>
<div class="flex flex-col w-full h-full window">
<div class="title-bar">
<div class="title-bar-text">Workshop - <%~ include('/workshop/structure_name', {structure: it.structure}) %>
</div>
</div>
<div class="flex flex-row flex-grow window-body">
<div class="w-1/5 h-full">
<%~ include('/workshop/sidebar', it) %>
</div>
<div id="main-editor" class="flex flex-grow">
<div id="left-pane" class="w-1/2 flex-grow bg-black h-full">
</div>
<div id="preview-area" class="w-1/2 bg-green-500 h-full">
</div>
</div>
</div>
</div>
</body>
</html>