spinn_mit/index.php

84 lines
2.2 KiB
PHP
Raw Normal View History

2022-10-26 14:08:26 +02:00
<?php
require_once('system/data.php');
dbVerbindungErzeugen()
?>
2022-10-26 12:05:39 +02:00
<!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">
2022-12-30 11:40:47 +01:00
<link rel="stylesheet" href="/css/photoswipe.css">
2022-11-15 13:18:14 +01:00
2022-11-18 15:11:18 +01:00
<link rel="stylesheet" href="https://use.typekit.net/out0zfe.css">
2022-11-15 13:18:14 +01:00
2022-11-18 15:11:18 +01:00
<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">
2023-01-03 16:08:52 +01:00
<meta name="description" content="" />
2022-11-18 15:11:18 +01:00
2022-11-15 13:18:14 +01:00
2022-10-26 12:05:39 +02:00
</head>
<body>
2022-11-15 16:37:33 +01:00
2023-01-03 16:08:52 +01:00
2022-12-30 11:40:47 +01:00
2022-11-18 15:11:18 +01:00
<div id="map">
</div>
2022-11-18 15:11:18 +01:00
<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>
2022-11-14 16:27:53 +01:00
2022-11-15 16:37:33 +01:00
<div id="overlay" class="hidden">
2022-11-18 15:11:18 +01:00
<img src="/images/cancel.svg" id="cancel">
2022-11-15 13:18:14 +01:00
2022-11-16 10:32:30 +01:00
<div id="overlay_container">
2022-11-15 13:18:14 +01:00
2022-11-16 10:32:30 +01:00
2022-11-15 13:18:14 +01:00
</div>
2022-11-16 10:32:30 +01:00
2022-11-14 16:27:53 +01:00
</div>
</div>
2022-10-26 14:20:01 +02:00
2022-11-14 16:27:53 +01:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
2022-11-15 13:18:14 +01:00
<script src="https://ucarecdn.com/libs/widget/3.x/uploadcare.full.min.js"></script>
2023-01-03 16:08:52 +01:00
2022-11-14 16:27:53 +01:00
2022-10-26 14:20:01 +02:00
<script src="js/functions.js"></script>
2023-01-03 16:08:52 +01:00
<script src="loadMap.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAkfYzlFa9nljVhIyfPQoz3n7Zi5TOs4WQ&callback=initMap"
defer ></script>
2023-01-03 16:08:52 +01:00
<script type="module" src="/js/gallery.js"></script>
2022-10-26 12:05:39 +02:00
</body>
2022-10-26 13:11:10 +02:00
</html>