You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							46 lines
						
					
					
						
							1.4 KiB
						
					
					
				
			
		
		
	
	
							46 lines
						
					
					
						
							1.4 KiB
						
					
					
				| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|     <head>
 | |
|         <meta charset="UTF-8">
 | |
|         <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
 | |
| 
 | |
|         <link href="./styles/styles.css" rel="stylesheet">
 | |
|         <link href='./styles/files.css' rel='stylesheet'>
 | |
|         <link href='./styles/controls.css' rel='stylesheet'>
 | |
|         <link href='./styles/context.css' rel='stylesheet'>
 | |
|         <link href='./styles/modal.css' rel='stylesheet'>
 | |
|         <link href="./styles/toast.css" rel="stylesheet">
 | |
| 
 | |
|         <title>FileKade</title>
 | |
|     </head>
 | |
|     <body>
 | |
|         <div id="title-container">
 | |
|             <div id="title-sub-container">
 | |
|                 <p id="title" class="nosel">FileKade</p>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div id='container'>
 | |
|             <div id='controls' class='controls'>
 | |
|                 <div id='header-buttons'></div>
 | |
|                 <div id='header-nav'></div>
 | |
|             </div>
 | |
|             <div id='files' class='files'>
 | |
|                 <div id='file-header' class='file-header'>
 | |
|                     <p></p>
 | |
|                     <p>Name</p>
 | |
|                     <p>Type</p>
 | |
|                     <p>Last Modified</p>
 | |
|                     <p>Size</p>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div id="ctx"></div>
 | |
|         <div id="toast-container"></div>
 | |
| 
 | |
| 
 | |
|         <script src="./scripts/renderer.js"></script>
 | |
| 
 | |
|     </body>
 | |
| </html>
 | |
| 
 |