2024-02-24 11:12:14 -05:00
|
|
|
<html>
|
|
|
|
|
<head>
|
2024-06-02 00:39:30 -04:00
|
|
|
<link rel="stylesheet" href="/css/xp.css">
|
2024-02-24 11:12:14 -05:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2024-06-02 00:39:30 -04:00
|
|
|
<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">
|
2024-02-24 11:12:14 -05:00
|
|
|
</div>
|
2024-06-02 00:39:30 -04:00
|
|
|
<div id="preview-area" class="w-1/2 bg-green-500 h-full">
|
2024-02-24 11:12:14 -05:00
|
|
|
</div>
|
2024-06-02 00:39:30 -04:00
|
|
|
</div>
|
2024-02-24 11:12:14 -05:00
|
|
|
</div>
|
2024-06-02 00:39:30 -04:00
|
|
|
</div>
|
2024-02-24 11:12:14 -05:00
|
|
|
</body>
|
|
|
|
|
</html>
|