forked from freifunk-flensburg/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·107 lines (105 loc) · 5.38 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php ?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="de"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Freifunk Herford</title>
<meta name="description" content="Freifunk Herford ist dein freies WLAN zum selber machen, im Kreis Herford und Umgebung.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/stylesheets/style.css">
<link rel="icon" sizes="192x192" href="highres-favicon.png">
<meta name="theme-color" content="#ffffff">
<link rel="manifest" href="manifest.json">
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<!--[if lt IE 9]>
<aside class="browse-happy">Du benutzt einen <strong>veralteten</strong> Webbrowser. Einige Funktionen dieser Webseite werden leider nicht funktionieren. Du kannst einen neuen <a target="_blank" href="http://browsehappy.com/">sicheren Webbrowser herunterladen</a>, um dein Erlebnis auf unserer und anderen Internetseiten zu verbessern.</p></aside>
<![endif]-->
<div class="main-header-wrap">
<header id="main-header">
<h1 class="logo">
<a href="#start">Freifunk Herford</a>
</h1>
<nav class="main-navigation">
<ul onclick="<?php /* Fixes missing hover effect on iOS */?>">
<li><a href="#start">Start</a></li>
<li><a href="http://map.herford.freifunk.net/">Karte</a></li>
<li><a href="#participate">Mitmachen</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#donate">Spenden</a></li>
<li><a href="#contact">Kontakt</a></li>
<!--<li><a target="_blank" href="http://wiki.freifunk-flensburg.de/wiki/Hauptseite">Wiki</a></li>-->
</ul>
</nav>
</header>
</div>
<main>
<section>
<?php include('content/start.php'); ?>
</section>
<section class="section-standard">
<?php include('content/about.php'); ?>
</section>
<figure id="participate" class="section-image">
<img src="media/freifunk-flensburg-routerhafenspitze-by-fabian-horst.jpg" alt="Freifunk Herford - Router an der Hafenspitze">
<figcaption>
<h2>Mach mit, bewege Bytes</h2>
</figcaption>
</figure>
<section class="section-standard">
<?php include('content/participate.php'); ?>
</section>
<figure id="faq" class="section-image">
<img src="media/freifunk-flensburg-fragen-by-fabian-horst.jpg" alt="Freifunk Herford - Mit den richtigen Antworten">
<figcaption>
<h2>Wir haben Antworten</h2>
</figcaption>
</figure>
<section class="section-standard">
<?php include('content/faq.php'); ?>
</section>
<figure id="donate" class="section-image">
<img src="media/freifunk-flensburg-spenden.jpg" alt="Spenden an Freifunk Herford">
<figcaption>
<h2>Ohne Moos nix los</h2>
</figcaption>
</figure>
<section class="section-standard">
<?php include('content/donate.php'); ?>
</section>
<figure id="contact" class="section-image">
<img src="media/freifunk-flensburg-kontakte.jpg" alt="Basteln beim Freifunk Herford">
<figcaption>
<h2>Jede Menge Kontakt(e)</h2>
</figcaption>
</figure>
<section class="section-standard">
<?php include('content/contact.php'); ?>
</section>
</main>
<footer class="main-footer">
<ul class="list-external-links">
<li>
<a href="https://www.facebook.com/FreifunkHerford" title="Erfahre mehr über uns bei Facebook." class="facebook" target="_blank">Facebook</a>
</li>
<li>
<a href="https://twitter.com/freifunkhf" title="Erfahre mehr über uns bei Twitter." class="twitter" target="_blank">Twitter</a>
</li>
<li>
<a href="http://freifunk.net/" class="freifunk" title="Die Webseite der Freifunk-Initiative" target="_blank">freifunk.net</a>
</li>
<li>
<a href="https://github.com/freifunk-herford" class="github" title="Unser Code im Netz, zum Nachschlagen und Mitarbeiten.">GitHub</a>
</li>
</ul>
</footer>
<script src="assets/javascripts/jquery-1.11.1.min.js"></script>
<script async src="assets/javascripts/jquery.main-js.php"></script>
</body>
</html>