2016-04-30 14:28:33 -04:00
|
|
|
<!DOCTYPE html>
|
2016-03-12 13:50:43 -05:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Tilde Friends</title>
|
2021-01-02 13:10:00 -05:00
|
|
|
<link type="text/css" rel="stylesheet" href="/static/style.css">
|
|
|
|
<link type="image/png" rel="shortcut icon" href="/static/favicon.png">
|
2016-03-12 13:50:43 -05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
</head>
|
2016-04-30 14:28:33 -04:00
|
|
|
<body style="display: flex; flex-flow: column">
|
2023-04-29 14:23:08 -04:00
|
|
|
<tf-navigation></tf-navigation>
|
2017-01-16 10:24:44 -05:00
|
|
|
<div id="content" class="hbox" style="flex: 1 1; width: 100%">
|
2023-08-16 20:49:02 -04:00
|
|
|
<div id="editPane" class="vbox" style="flex: 1 1; display: none">
|
2022-08-10 22:04:55 -04:00
|
|
|
<div class="navigation hbox">
|
2023-01-28 17:44:45 -05:00
|
|
|
<input type="button" id="closeEditor" name="closeEditor" value="Close">
|
|
|
|
<input type="button" id="save" name="save" value="Save">
|
2023-03-21 19:08:04 -04:00
|
|
|
<input type="button" id="icon" name="icon" value="📦">
|
2022-08-10 22:04:55 -04:00
|
|
|
<input type="text" id="name" name="name" style="flex: 1 1; min-width: 1em"></input>
|
2023-01-28 17:44:45 -05:00
|
|
|
<input type="button" id="delete" name="delete" value="Delete">
|
|
|
|
<input type="button" id="trace_button" value="Trace">
|
2021-01-02 13:10:00 -05:00
|
|
|
</div>
|
|
|
|
<div class="hbox" style="height: 100%">
|
2023-05-03 19:12:34 -04:00
|
|
|
<tf-files-pane></tf-files-pane>
|
2021-01-02 13:10:00 -05:00
|
|
|
<div id="docPane" style="display: flex; flex: 1 1 50%; flex-flow: column">
|
|
|
|
<div style="flex: 1 1 50%; position: relative">
|
|
|
|
<textarea id="editor" class="main"></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-01-16 10:24:44 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-16 20:49:02 -04:00
|
|
|
<div id="viewPane" class="vbox" style="flex: 1 1; overflow: auto">
|
2023-09-04 13:44:05 -04:00
|
|
|
<iframe id="document" sandbox="allow-forms allow-scripts allow-top-navigation allow-modals allow-popups allow-downloads" style="width: 100%; height: 100%; border: 0"></iframe>
|
2017-01-16 10:24:44 -05:00
|
|
|
</div>
|
2016-04-30 14:28:33 -04:00
|
|
|
</div>
|
2023-05-14 15:31:45 -04:00
|
|
|
<script>window.litDisableBundleWarning = true;</script>
|
2023-01-28 17:44:45 -05:00
|
|
|
<script src="/static/client.js" type="module"></script>
|
2016-03-12 13:50:43 -05:00
|
|
|
</body>
|
|
|
|
</html>
|