forked from coollog/yale17
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
32 lines (27 loc) · 1.12 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
<?php require_once('fbheader.php'); ?>
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.7.1", "compressed");
google.load("jqueryui", "1.8.17", "compressed");
</script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/ui-lightness/jquery-ui.min.css" />
<script src="page.js"></script>
<link rel="stylesheet" type="text/css" href="inc/style.css" />
<script src="inc/dockinterface.js"></script>
<link rel="stylesheet" type="text/css" href="inc/dockstyle.css" />
</head>
<body>
<div id="screen"></div>
<div id="panels"></div>
<a href="http://yalecollege.yale.edu/content/class-2017" target="_blank"><img id="home" src="gfx/home_<?php $l = array("small", "beveled"); echo $l[array_rand($l)]; ?>.png" /></a>
<!-- DOCK -->
<div class="dock" id="dock">
<div class="dockcontainer">
</div>
</div>
<div id="sig">Designed by Qingyang Chen. © 2013.</div>
<?php require_once('fbroot.php'); ?>
</body>
</html>