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">
|
2016-04-03 15:31:03 -04:00
|
|
|
<!--HEAD-->
|
2016-03-12 13:50:43 -05:00
|
|
|
</head>
|
2016-04-30 14:28:33 -04:00
|
|
|
<body style="display: flex; flex-flow: column">
|
|
|
|
<div class="navigation">
|
2016-12-22 12:38:21 -05:00
|
|
|
<span>😎</span>
|
2016-04-30 14:28:33 -04:00
|
|
|
<span id="title">Tilde Friends</span>
|
|
|
|
<a href="/">home</a>
|
2017-01-16 10:24:44 -05:00
|
|
|
<a href="#" onclick="event.preventDefault(); edit()">edit</a>
|
2022-01-02 14:10:45 -05:00
|
|
|
<a href="#" onclick="event.preventDefault(); trace()">trace</a>
|
2016-04-30 14:28:33 -04:00
|
|
|
<span id="status"></span>
|
|
|
|
<span id="login"></span>
|
2016-03-12 13:50:43 -05:00
|
|
|
</div>
|
2017-01-16 10:24:44 -05:00
|
|
|
<div id="content" class="hbox" style="flex: 1 1; width: 100%">
|
2021-01-02 13:10:00 -05:00
|
|
|
<div id="editPane" class="vbox" style="display: none">
|
2017-01-16 10:24:44 -05:00
|
|
|
<div class="navigation">
|
|
|
|
<input type="button" id="closeEditor" name="closeEditor" value="Close" onclick="closeEditor()">
|
|
|
|
<input type="button" id="save" name="save" value="Save" onclick="save()">
|
2021-01-02 13:10:00 -05:00
|
|
|
<input type="text" id="name" name="name"></input>
|
2017-01-16 10:24:44 -05:00
|
|
|
<input type="checkbox" id="run" name="run" checked><label for="run">Restart after save</label>
|
|
|
|
<input type="button" id="revert" name="revert" value="Revert to Saved" onclick="revert()">
|
2021-01-02 13:10:00 -05:00
|
|
|
<a id="latest" href="">Latest</a>
|
|
|
|
</div>
|
|
|
|
<div class="hbox" style="height: 100%">
|
|
|
|
<div id="filesPane">
|
|
|
|
<ul id="files">
|
|
|
|
</ul>
|
|
|
|
<br>
|
|
|
|
<div><button onclick="newFile()">New File</button></div>
|
|
|
|
<div><button onclick="removeFile()">Remove File</button></div>
|
|
|
|
</div>
|
|
|
|
<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>
|
2021-12-22 10:05:08 -05:00
|
|
|
<div id="viewPane" class="vbox" style="flex: 1 0 50%; overflow: auto">
|
2021-01-02 13:10:00 -05:00
|
|
|
<iframe id="document" sandbox="allow-forms allow-scripts allow-top-navigation allow-modals" 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>
|
2021-12-22 10:05:08 -05:00
|
|
|
<script src="/static/split.min.js"></script>
|
2021-01-02 13:10:00 -05:00
|
|
|
<script src="/static/client.js"></script>
|
2016-03-12 13:50:43 -05:00
|
|
|
</body>
|
|
|
|
</html>
|