-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
61 lines (61 loc) · 2.31 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Swords & Wizardry Tools</title>
<link HREF="sw.css" media='screen' rel="stylesheet" TYPE="text/css">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Quick calculations for Swords & Wizardry.">
<!-- Google Analytics init -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(
['_setAccount', 'UA-9377034-1'],
['_setDomain', '.foont.net'],
['_trackPageview']
);
</script>
</head>
<body>
<div id='fixed_wrapper'>
<div id='fixed_content'>
<ul class="nav">
<li class='selected'>Treasure</li>
<li>Monsters</li>
<li>Spells</li>
</ul>
<div class='page_content'>
<ul class="content">
<li> <? include('treasure.html'); ?> </li>
<li style='display:none'><h3>Nothing to see here, move along</h3></li>
<li style='display:none'><h3>Nothing to see here, move along</h3></li>
</ul>
</div>
</div>
<div class='footer'>
Created by <a href="http://foont.net">Brian Ramsay</a> | <a href="https://github.com/BrianRamsay/Swords-and-Wizardry-Tools">Code is on github</a> | <a href="README">License</a>
<br />
<br />
<a href='mailto:brian@foont.net' rel='nofollow'>Email me</a> at brian@foont.net and let me know what you think.
<br />
<br />
Thanks to Matthew Finch & Mythmere Games
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.1/mootools-yui-compressed.js"></script>
<script src="js/mootools-more-1.3.1.1.js"></script>
<script src="js/tinytab.js"></script>
<script src="js/tools.js"></script>
<script>
$(window).addEvent('domready', function() {
tb = new TinyTab($$('ul.nav li'),$$('ul.content li'));
Tools.init();
});
(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>
<script src="js/ienotify.js"></script>
</body>
</html>