-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
56 lines (47 loc) · 2.19 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
<?
function mobileDevice() {
$type = $_SERVER['HTTP_USER_AGENT'];
if(strpos((string)$type, 'Windows Phone') != false || strpos((string)$type, 'iPhone') != false || strpos((string)$type, 'Android') != false)
return true;
else
return false;
}
if(mobileDevice() == true)
header('Location: m');
$dir = basename(dirname(__FILE__));
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title><?=ucwords($dir)?>.</title>
<link rel="stylesheet" type="text/css" href="/_css/reset.css">
<link rel="stylesheet" type="text/css" href="main.css">
<script language="javascript" type="text/javascript" src="/_js/jquery-1.7.1.min.js"></script>
<script language="javascript" type="text/javascript" src="/_js/processing-1.3.6.min.js"></script>
<script language="javascript" type="text/javascript">
$.get('data.php', { 'go': 0 });
</script>
<!--[if IE]><script language="javascript" type="text/javascript" src="/_js/excanvas.js"></script><![endif]-->
<script language="javascript" type="text/javascript" src="/_js/analytics.js"></script>
</head>
<body>
<div id="header"><img src="iphone.png" width="75"/><h1>http://jann.ae/<?=$dir?></h1></div>
<div id="mainContent">
<div id="printData"></div>
<script id="sketch" type="application/processing" src="run.js"></script>
<canvas id="run">
<p>Your browser does not support the canvas tag.</p>
</canvas>
<noscript>
<p>JavaScript is required to view the contents of this page.</p>
</noscript>
<div id="sources">Source code: <a href="https://github.com/jannae/<?=$dir?>">Github Repo</a> |
Built with <a href="http://processing.org" title="Processing">Processing</a>, <a href="http://processingjs.org" title="Processing.js">Processing.js</a> and <a href="http://jquery.com/" title="Processing.js">jQuery</a></div>
</div>
</body>
</html>