2016-04-30 18:28:33 +00:00
|
|
|
<!DOCTYPE html>
|
2016-03-12 18:50:43 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Tilde Friends</title>
|
2021-01-02 18:10:00 +00: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 18:50:43 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
</head>
|
2016-04-30 18:28:33 +00:00
|
|
|
<body style="display: flex; flex-flow: column">
|
2023-04-29 18:23:08 +00:00
|
|
|
<tf-navigation></tf-navigation>
|
2017-01-16 15:24:44 +00:00
|
|
|
<div id="content" class="hbox" style="flex: 1 1; width: 100%">
|
2022-03-07 21:06:20 +00:00
|
|
|
<div id="statsPane" class="vbox" style="display: none; flex 1 1">
|
2022-01-22 18:50:29 +00:00
|
|
|
<div class="hbox">
|
2023-01-28 22:44:45 +00:00
|
|
|
<input type="button" id="closeStats" name="closeStats" value="Close">
|
2022-01-22 18:50:29 +00:00
|
|
|
</div>
|
2022-03-07 21:06:20 +00:00
|
|
|
<div id="graphs" class="vbox" style="height: 100%"></div>
|
2022-01-22 18:50:29 +00:00
|
|
|
</div>
|
2021-01-02 18:10:00 +00:00
|
|
|
<div id="editPane" class="vbox" style="display: none">
|
2022-08-11 02:04:55 +00:00
|
|
|
<div class="navigation hbox">
|
2023-01-28 22:44:45 +00:00
|
|
|
<input type="button" id="closeEditor" name="closeEditor" value="Close">
|
|
|
|
<input type="button" id="save" name="save" value="Save">
|
2023-03-21 23:08:04 +00:00
|
|
|
<input type="button" id="icon" name="icon" value="📦">
|
2022-08-11 02:04:55 +00:00
|
|
|
<input type="text" id="name" name="name" style="flex: 1 1; min-width: 1em"></input>
|
2023-01-28 22:44:45 +00:00
|
|
|
<input type="button" id="delete" name="delete" value="Delete">
|
|
|
|
<input type="button" id="trace_button" value="Trace">
|
|
|
|
<input type="button" id="stats_button" value="Stats">
|
2021-01-02 18:10:00 +00:00
|
|
|
</div>
|
|
|
|
<div class="hbox" style="height: 100%">
|
2023-05-03 23:12:34 +00:00
|
|
|
<tf-files-pane></tf-files-pane>
|
2021-01-02 18:10:00 +00: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 15:24:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-05 01:53:16 +00:00
|
|
|
<div id="viewPane" class="vbox" style="flex: 1 0; overflow: auto">
|
2022-12-28 18:23:52 +00:00
|
|
|
<iframe id="document" sandbox="allow-forms allow-scripts allow-top-navigation allow-modals allow-downloads" style="width: 100%; height: 100%; border: 0"></iframe>
|
2017-01-16 15:24:44 +00:00
|
|
|
</div>
|
2016-04-30 18:28:33 +00:00
|
|
|
</div>
|
2022-06-18 17:07:36 +00:00
|
|
|
<script src="/split/split.min.js"></script>
|
|
|
|
<script src="/smoothie/smoothie.js"></script>
|
2023-01-28 22:44:45 +00:00
|
|
|
<script src="/static/client.js" type="module"></script>
|
2016-03-12 18:50:43 +00:00
|
|
|
</body>
|
|
|
|
</html>
|