84 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
require_once('system/data.php');
 | 
						|
 | 
						|
dbVerbindungErzeugen()
 | 
						|
?>
 | 
						|
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="de">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <title>SPINN MIT!</title>
 | 
						|
    <link rel="stylesheet" href="/css/style.css">
 | 
						|
    <link rel="stylesheet" href="/css/photoswipe.css">
 | 
						|
 | 
						|
    <link rel="stylesheet" href="https://use.typekit.net/out0zfe.css">
 | 
						|
 | 
						|
    <link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
 | 
						|
    <link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
 | 
						|
    <link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
 | 
						|
    <link rel="manifest" href="images/site.webmanifest">
 | 
						|
 | 
						|
    <meta name="description" content="" />
 | 
						|
  
 | 
						|
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 
 | 
						|
 | 
						|
    
 | 
						|
 | 
						|
    <div id="map">
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div id="startScreen" class="hideElement">
 | 
						|
      <img src="images/logo.gif" id="LogoLarge" alt="">
 | 
						|
      <p id="startText">Mitspinnen und Zürich optimieren: Hier werden deine Ideen gehört!</p>
 | 
						|
    </div>
 | 
						|
   
 | 
						|
    <img src="images/logo.gif" class="hideElement" id="logo" alt="">
 | 
						|
  
 | 
						|
 | 
						|
    <div class="mapControls hideElement">
 | 
						|
      <a href="/help.html">
 | 
						|
        <img src="images/help.svg" id="helpLink" class="mapControl">
 | 
						|
      </a>
 | 
						|
      <a href="/about.html">
 | 
						|
        <img src="images/about.svg" id="aboutLink" class="mapControl">
 | 
						|
      </a>
 | 
						|
      <img src="images/currentLocation.svg" id="currentLocation" class="mapControl">
 | 
						|
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div id="overlay" class="hidden">
 | 
						|
      <img src="/images/cancel.svg" id="cancel">
 | 
						|
 | 
						|
      <div id="overlay_container">
 | 
						|
 | 
						|
     
 | 
						|
      </div>
 | 
						|
      
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
 | 
						|
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
 | 
						|
    <script src="https://ucarecdn.com/libs/widget/3.x/uploadcare.full.min.js"></script>
 | 
						|
 | 
						|
   
 | 
						|
 | 
						|
    <script src="js/functions.js"></script>
 | 
						|
    
 | 
						|
    <script src="loadMap.js"></script>
 | 
						|
    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAkfYzlFa9nljVhIyfPQoz3n7Zi5TOs4WQ&callback=initMap"
 | 
						|
      defer ></script>
 | 
						|
      <script type="module" src="/js/gallery.js"></script>
 | 
						|
</body>
 | 
						|
</html>
 |