-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.html
87 lines (79 loc) · 3.29 KB
/
games.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Game Catalog @ Hark the Sound</title>
<link href="pages/css/games.css" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css' />
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: false,
baseUrl: './',
modulePaths: {'org.hark' : '.'}
};
</script>
<script src="http://o.aolcdn.com/dojo/1.5/dojo/dojo.xd.js"></script>
<script src="http://o.aolcdn.com/dojo/1.5/dijit/dijit.xd.js"></script>
<script src="/libs/uow.js"></script>
<script src="pages/games.js"></script>
</head>
<body class="claro" tabindex="0">
<div id="model" dojoType="org.hark.widgets.GameListModel"></div>
<div dojoType="org.hark.widgets.SiteKeys"></div>
<div dojoType="org.hark.widgets.SiteAudio"></div>
<div dojoType="org.hark.widgets.GameListKeys" model="model"></div>
<div dojoType="org.hark.widgets.GameListAudio" model="model" promptIdle="true"></div>
<div id="nav">
<div class="container_12" id="nav_container">
<div class="grid_4" dojoType="org.hark.widgets.SiteTabs" id="site_tabs"></div>
<div class="grid_8" dojoType="org.hark.widgets.SiteActions" id="site_actions" helpPage="games.html"></div>
<div class="clear"></div>
</div>
</div>
<div id="catalog">
<div id="top">
<div class="container_12" id="top_container">
<div class="grid_12" id="top_title">
<a href="index.html"><img src="images/logo_flat_64.png" alt="Hark the Sound logo" /></a>
<h1><a data-label="site_title" href="index.html">Hark the Sound</a></h1>
</div>
<div class="clear"></div>
</div>
</div>
<div id="middle">
<div class="container_12" id="middle_container">
<div id="search">
<div class="grid_6 prefix_3 suffix_3" dojoType="org.hark.widgets.GameSearch" model="model"></div>
<div class="clear"></div>
</div>
<div id="results" dojoType="org.hark.widgets.GameListView" model="model"></div>
</div>
</div>
<div id="bottom">
<div class="container_12" id="bottom_container">
<div class="grid_6" id="bottom_left">
UNC Computer Science<br />
Enabling Technology<br />
Copyright © 2010, 2011. All Rights Reserved.<br />
View the <a href="#">site credits</a> for details.
</div>
<div class="grid_6" id="bottom_right">
<img src="images/unc-logo.png" />
</div>
<div class="clear"></div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-6128682-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>