forked from cory/tildefriends
		
	git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4444 ed5197a5-7fde-0310-b194-c3ffbd925b24
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 	<head>
 | |
| 		<title>Tilde Friends</title>
 | |
| 		<link type="text/css" rel="stylesheet" href="/static/style.css">
 | |
| 		<link type="image/png" rel="shortcut icon" href="/static/favicon.png">
 | |
| 		<meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 	</head>
 | |
| 	<body style="display: flex; flex-flow: column">
 | |
| 		<tf-navigation></tf-navigation>
 | |
| 		<div id="content" class="hbox" style="flex: 1 1; width: 100%">
 | |
| 			<div id="editPane" class="vbox" style="flex: 1 1; display: none">
 | |
| 				<div class="navigation hbox">
 | |
| 					<input type="button" id="closeEditor" name="closeEditor" value="Close">
 | |
| 					<input type="button" id="save" name="save" value="Save">
 | |
| 					<input type="button" id="icon" name="icon" value="📦">
 | |
| 					<input type="text" id="name" name="name" style="flex: 1 1; min-width: 1em"></input>
 | |
| 					<input type="button" id="delete" name="delete" value="Delete">
 | |
| 					<input type="button" id="trace_button" value="Trace">
 | |
| 				</div>
 | |
| 				<div class="hbox" style="height: 100%">
 | |
| 					<tf-files-pane></tf-files-pane>
 | |
| 					<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>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 			<div id="viewPane" class="vbox" style="flex: 1 1; overflow: auto">
 | |
| 				<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>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		<script>window.litDisableBundleWarning = true;</script>
 | |
| 		<script src="/static/client.js" type="module"></script>
 | |
| 	</body>
 | |
| </html>
 |