-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·45 lines (45 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>RandomThink Labs</title>
<link type="text/css" rel="stylesheet" href="styles/reset.css" />
<link type="text/css" rel="stylesheet" href="styles/lab.css" />
<link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/themes/redmond/jquery-ui.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/jquery-ui.min.js"></script>
<!--[if lte IE 8]>
<script src="js/html5.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<header>
<h1>RandomThink Labs</h1>
</header>
<section id="content">
<p>For now, here's a list of stuff under here. Total mess right now. Organizing soon.</p>
<ul>
<li><a href="canvas/">Canvas</a></li>
<li><a href="html5drums/">HTML 5 Drum Kit</a></li>
</ul>
</section>
<footer>
<p>RandomThink Labs, all works by Brian Arnold unless otherwise noted. All software herein falls under an <a href="/lab/LICENSE">MIT License</a> unless otherwise noted.</p>
</footer>
<script type="text/javascript">
// Run on DOM ready
$(document).ready(function(){
});
</script>
<!-- Analytics! -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-279164-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>