forked from cornguo/Moovee
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
65 lines (65 loc) · 2.45 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
<?php
if(isset($_GET['movs']))
{
header("HTTP/1.1 301 Moved Permanently");
header("location: ./gh2009/?movs=" . $_GET['movs']);
return;
}
else
{
?>
<!DOCTYPE html>
<html>
<head>
<title>Moovee -- A simple movie scheduler</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="description" content="很陽春的排片單系統" />
<meta name="keywords" content="排片單, 金馬, 金馬影展, 台北電影節, Taipei Golden Horse Film Festival, Taipei Film Festival, Movie Time Scheduler" />
<!-- iPhone test -->
<link rel="apple-touch-icon" href="icon/moovee.png" />
<meta name="viewport" content = "width = device-width, initial-scale = 1, user-scalable = no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css" media="screen" />
<link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.min.css" type="text/css" media="screen" />
<link rel="stylesheet" href="styles/print.css" type="text/CSS" media="print" />
<link rel="stylesheet" href="styles/movprops.css" type="text/css" />
<!-- Oh, yes, please render it using chrome frame, or your almost-standard engine -->
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<![endif]-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="."><strong>Moovee</strong> -- A simple movie scheduler</a>
</div>
</div>
</div>
<div class="container">
<h1>Which film festival?</h1>
<div id="festList">
<ul>
<li><a href="ng_gh2016f/">2016 金馬奇幻影展</a></li>
</ul>
</div>
<div class="muted">
<span>Hint: iPad / iPhone / iPod user, try to add this page to your Home Screen :)</span><br />
<span>20151013: Here's <a href="https://github.com/johncylee/Moovee">the source code</a> of this tool. Have fun :D</span>
</div>
</div>
</body>
</html>
<?php
}
?>