www.spaceplanner.app

Web client to the spaceplanner API
git clone git://jacobedwards.org/www.spaceplanner.app
Log | Files | Refs

index.html (1244B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 	<head>
      4 		<title>Spaceplanner Editor</title>
      5 		<link rel="icon" href="/images/favicon.svg"/>	
      6 		<link rel="stylesheet" type="text/css" href="/css/main.css">
      7 		<link rel="stylesheet" type="text/css" href="./main.css">
      8 		<link rel="stylesheet" type="text/css" href="./svg.css"/>
      9 		<script type="module" src="./main.js"></script>
     10 		<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, minimum-scale=1">
     11 		<meta name="description" content="Create and update rooms, add and arrange furniture, update door swing direction, and all other floor plan editing functions.">
     12 	</head>
     13 	<body>
     14 		<noscript><p class="error">Unfortunately JavaScript must be enabled for this to function.</p></noscript>
     15 
     16                 <!--
     17 		  -- Inlined it here because there's a lot of module
     18                   -- scripts to be fetched before they can run (and I'm
     19                   -- not sure if one can start running before they're
     20                   -- all loaded or not
     21 		  -->
     22 		<div id="wait">Loading scripts...</div>
     23 
     24 		<section id="editor">
     25 			<header>
     26 				<div>
     27 					<h1 class="fp_name">Floorplan</h1>
     28 					<span id="status"></span>
     29 				</div>
     30 			</header>
     31 		</section>
     32 	</body>
     33 </html>