-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·147 lines (118 loc) · 4 KB
/
index.php
File metadata and controls
executable file
·147 lines (118 loc) · 4 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
/*
//NOT fair to FORCE mobile redirect when protest not on! On a protest, this detects mobile browsers and redirect to the app.
include("detectMobile.php");
if(isMobile()){header("Location: https://sukey.org/webapp/");}
*/
$id=$_GET['id'];
if(!isset($_GET['id'])){$id = 'Homepage';}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Sukey - Keeping demonstrators safe, mobile & informed.</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
<meta name="description" content="Sukey is a mapping and reporting tool designed to keep demonstrators safe, mobile & informed." />
<meta name="keywords" content="Sukey, protest map, live protest, kettling, GIS, demo2011, demonstrations, #sukey, sukeyData" />
<meta name="robots" content="index, follow" />
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<link rel="stylesheet" media="screen" href="css/screen.css" type="text/css"/>
<link rel="alternate" type="application/rss+xml" title="Sukey - Keeping demonstrators safe, mobile & informed" href="https://sukeyupdates.blogspot.com/feeds/posts/default/" />
<script type="text/javascript" src="http://www.google.com/jsapi">
</script>
<script type="text/javascript" src="js/gfeedfetcher.js">
/***********************************************
* gAjax RSS Feeds Displayer- (c) Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<style type="text/css">
.labelfield{ /*CSS for label field in general*/
color:brown;
font-size: 90%;
}
.datefield{ /*CSS for date field in general*/
color:gray;
font-size: 90%;
}
#example1 li{ /*CSS specific to demo 1*/
margin-bottom: 4px;
}
#example2 div{ /*CSS specific to demo 2*/
margin-bottom: 5px;
}
#example2 div a{ /*CSS specific to demo 2*/
text-decoration: none;
}
#example3 a{ /*CSS specific to demo 3*/
color: #D80101;
text-decoration: none;
font-weight: bold;
}
#example3 p{ /*CSS specific to demo 3*/
margin-bottom: 2px;
}
code{ /*CSS for insructions*/
color: red;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
<div id="navbar"><?php include_once("php/navigation.php");?></div>
</div>
<div id="support">
<ul>
<li><a href="https://youtube.com/user/sukeyorg/" target="_blank"><img src="images/sukeyoutube.png" alt="Youtube"/></a></li>
<li><a href="https://twitter.com/sukeyio" target="_blank"><img src="images/sukeytwitter.png" alt="Twitter"/></a></li>
<li><a href="https://sukeyio.blogspot.com/feeds/posts/default/" target="_blank"><img src="images/sukeyrss.png" alt="RSS"/></a></li>
</ul>
</div>
<div class="colmask rightmenu">
<div class="colleft">
<div class="col1">
<div id="content">
<?php include_once("php/$id.php");?>
</div>
</div>
<div class="col2">
</div>
</div>
</div>
<div id="footer">
<div id="f1">
<h3>Sitemap</h3>
<div id="f1a">
<ul>
<li><a href="https://sukey.org/">Home</a></li>
<li><a href="https://sukey.org/what">What is Sukey?</a></li>
</ul>
</div>
<div id="f1b">
<ul>
<li><a href="https://twitter.com/sukeyio" target="_blank">Twitter</a></li>
<li><a href="https://www.facebook.com/sukeyio" target="_blank">Facebook</a></li>
</ul>
</div>
</div>
<div id="f2">
<h3>News & Updates</h3>
<ul>
<li><a href="http://sukeyio.blogspot.co.uk/">Sukey Blog</a></li>
<li><a href="/articles">Sukey in the Press</a></li>
</ul>
</div>
<div id="f3">
<h3>About Us</h3>
<ul>
<li><a href="/what">About</a></li>
<li><a href="/contact">Contact</a></li>
<li><a href="/what">FAQ</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>