-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
69 lines (61 loc) · 2.42 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>geofsdisplay</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<meta name="viewport" content="width=device-width; initial-scale=1.0;" />
<link rel="apple-touch-icon" href="images/displaylogo.png" />
<!--<link rel="apple-touch-startup-image" href="images/startupscreen.png" />-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.js"></script>
<script src="./js/hammerjs-v2.0.6.min.js"></script>
<script src="./js/index.js"></script>
<script src="./js/displaycontent.js"></script>
<script src="./js/ajaxcontent.js"></script>
<script src="./js/plakate.js"></script>
<script src="./js/eastereggs.js"></script>
</head>
<body>
<div id="container">
<div id="content">
<div id="header">
<img src="images/geofspacman.png" id="geofspacman" class="fslogo" onclick="window.location.reload()">
<img src="images/geoloek.png" id="geoloekbaum" class="fslogo" onclick="window.location.reload()">
<div id="fahrplan"></div>
<div id="uhr">hh:mm:ss</div>
</div>
<div id="main">
<div id="news">
<div class="latestNews">
<h3 class="newstitle">Regenradar</h3>
<p class="newstext" id="regenradar"></p>
<p class="newstext" id="wetter"></p>
</div>
<div class="latestNews">
<h3 class="newstitle">Heute in der Mensa am <span ondblclick="hockenpong()">Ring</span>:</h3>
<div class="newstext" id="mensa"></div>
</div>
</div>
</div>
<div id="footer">
<div id="praesiGeoloek" class="praesidienst">
<h3 ondblclick='EASTERzwiebelandGEEK()'>Präsenzdienste GeoLök:</h3>
<?php include("php/praesidienste-geoloek.php"); ?>
</div>
<div id="praesiGeofs" class="praesidienst">
<h3 ondblclick='EASTERbaconandEGGs()'>Präsenzdienste GI:</h3>
<?php include("php/praesidienste-geofs.php"); ?>
</div>
</div>
</div> <!-- #content -->
<div id="plakate">
<hr id="plakatbalken"/>
<img id="plakat" class="plakate" src="images/geofspacman.png" draggable="false" onmousedown="if (event.preventDefault) event.preventDefault()" />
</div>
</div> <!-- #container -->
<script type="text/javascript">
init();
</script>
</body>
</html>