-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
29 lines (27 loc) · 1.08 KB
/
index.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
<% extends './skins/app.html' %>
<% subskin content %>
<canvas id="jsgamecanvas"></canvas>
<h3> Cursor keys to move; Y/Z to throw spear; Click to start or pause</h3>
<h1>Telemachus</h1>
<a href=http://github.com/oberhamsi/telemachus-gamejs/>@github</a>
<!-- <ul style="font-size:small;list-style-type:none;">
<li>30 Jan 2011</li
<li>Design & Graphics -- <a href=http://michalbe.blogspot.com/> Michal Budzynski </a>
<li>Code -- <a href="http://nekapuzer.at">Simon Oberhammer</a>
<li>Powered by <a href="http://gamejs.org">GameJs</a>
</ul>
-->
</p>
<script type="text/javascript">
(function() {
if (document.location.href.indexOf('localhost') != -1) return;
var stss = document.createElement('script');
stss.type = 'text/javascript';
stss.async = true;
stss.src = 'http://stats.nekapuzer.at/hit/?referer=' + escape(document.referrer) +
'&site=rtsimple-game' +
'&random=' + (new Date()).getTime();
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(stss, s);
})();
</script>