50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="it" data-text="html">
 | |
| <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <link rel="stylesheet" href="js/vendor/leaflet/dist/leaflet.css" />
 | |
|     <script src="js/vendor/leaflet/dist/leaflet.js"></script>
 | |
|     <link rel="stylesheet" href="css/app.css" />
 | |
|     <script src="js/index.js" type="module"></script>
 | |
|     <title>Carta Archeologica di Capri</title>
 | |
| </head>
 | |
| <body>
 | |
|     <header class="navbar mt-2 p-2">
 | |
|         <section class="navbar-section">
 | |
|             <span class="navbar-brand">
 | |
|                 <img loading="eager" alt="Logo" class="img-fit-contain" src="./img/logo.svg" height="62"/>
 | |
|             </span>
 | |
|         </section>
 | |
|         <section class="navbar-section">
 | |
|             <span class="navbar-center text-center text-large">
 | |
|                 Capri - Carta archeologica
 | |
|             </span>
 | |
|         </section>
 | |
|         <section class="navbar-section">
 | |
|             <a href="about.html" class="btn btn-link" title="About">ABOUT</a>
 | |
|             <a href="progetto.html" class="btn btn-link" title="Progetto">PROGETTO</a>
 | |
|         </section>
 | |
|     </header>
 | |
|     <div class="wait-lg text-center d-hide" style="clear: both;">
 | |
|         <p>Loading...</p>
 | |
|         <div class="loading loading-lg"></div>
 | |
|     </div>
 | |
|     <div class="container main">
 | |
|         <div id="map" class="map-lg map-sm"></div>
 | |
|     </div>
 | |
| 
 | |
|     <footer class="container text-center p-2 mt-2 navbar">
 | |
|         <section class="navbar-section mt-2">
 | |
|             <a class="navbar-brand" title="Vai alla home page di ISPC CNR" href="https://www.ispc.cnr.it" data-text="linkispc">
 | |
|                 <img loading="eager" alt="Logo ISPC CNR" class="img-fit-contain" src="./img/logo_ispc.svg" height="72"/>
 | |
|             </a>
 | |
|         </section>
 | |
|         <section class="navbar-center">
 | |
|             <p class="mt-2 pt-2">
 | |
|                 <a href="credits.html" data-text="credits">Crediti</a>
 | |
|             </p>
 | |
|         </section>
 | |
|     </footer>
 | |
| </body>
 | |
| </html>
 |