64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html data-theme="light">
 | |
| <head>
 | |
|     <meta charset='utf-8'>
 | |
|     <title>WebArchi</title>
 | |
|     <meta name='viewport' content='width=device-width, initial-scale=1'>
 | |
|     <link rel='stylesheet' type='text/css' media='screen' href='css/bim.css' />
 | |
|     <script type="importmap">
 | |
|         {
 | |
|           "imports": {
 | |
|             "three": "./vendor/three/build/three.module.js",
 | |
|             "@thatopen/fragments": "./vendor/@thatopen/fragments/dist/index.mjs",
 | |
|             "web-ifc": "./vendor/web-ifc/web-ifc-api.js",
 | |
|             "openbim-components": "./vendor/@thatopen/components/dist/index.mjs",
 | |
|             "@thatopen/components-front": "./vendor/@thatopen/components-front/dist/index.js",
 | |
|             "lit": "./vendor/@lit-labs/ssr-dom-shim/index.js"
 | |
|           }
 | |
|         }
 | |
|     </script>
 | |
|     <script src='main.js' type="module"></script>
 | |
| </head>
 | |
| <body>
 | |
| 	<nav class="navbar has-background-light" role="navigation" aria-label="main navigation">
 | |
| 		<div class="navbar-brand">
 | |
| 			<a class="navbar-item" href="/">
 | |
| 				<span class="icon mr-2">
 | |
| 					<i class="fas fa-home"></i>
 | |
| 				</span>
 | |
| 				WebArchi
 | |
| 			</a>
 | |
| 			<!-- navbar items, navbar burger... -->
 | |
| 		</div>
 | |
| 	</nav>
 | |
| 	<div class="columns">
 | |
| 		<div class="column is-full">
 | |
| 			<div id="scene"></div>
 | |
| 			<div id="ui" data-theme="light">
 | |
| 				<div class="file ml-4">
 | |
| 					<label class="file-label">
 | |
| 						<input class="file-input"
 | |
| 							type="file"
 | |
| 							name="load-ifc"
 | |
| 							id="load-ifc"
 | |
| 							accept=".ifc" />
 | |
| 						<span class="file-cta">
 | |
| 						<span class="file-icon">
 | |
| 							<i class="fas fa-upload"></i>
 | |
| 						</span>
 | |
| 						<span class="file-label">Apri file IFC...</span>
 | |
| 						</span>
 | |
| 					</label>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	<footer class="footer">
 | |
| 		<div class="content has-text-centered">
 | |
| 			<p>
 | |
| 				<strong>WebArchi</strong> by <a href="https://ispc.cnr.it">ISPC punks</a>.
 | |
| 			</p>
 | |
| 		</div>
 | |
| 	</footer>
 | |
| </body>
 | |
| </html> |