-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgames.php
77 lines (76 loc) · 2.5 KB
/
games.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Mercerenies - Games</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="../lib/jquery.min.js">
</script>
<script src="js/games.js">
</script>
</head>
<body>
<?php include('private/header.php'); ?>
<div class="page content">
<?php include('private/new_site_notice.php'); ?>
Here, you'll find a list of game projects that I either wrote or
contributed to. Note that some of my earliest games from long ago are not
listed here. Most of those are available
<a href="oldgames.php">
on a separate page
</a>.
<br/><br/>
What sort of game would you like to see? <br/>
<div style="margin:auto;">
<a href="javascript:void(0)" onclick="window.showAll();">All</a>
|
<a href="javascript:void(0)" onclick="window.showGenre(/Adventure/);">
Adventure Games</a>
|
<a href="javascript:void(0)" onclick="window.showGenre(/Puzzle/);">
Puzzle Games</a>
|
<a href="javascript:void(0)" onclick="window.showGenre(/Casual/);">
Casual Games</a>
|
<a href="javascript:void(0)" onclick="window.showGenre(/Platformer/);">
Platformers</a>
|
<a href="javascript:void(0)" onclick="window.showGenre(/RPG/);">
Role-playing Games</a>
|
<a href="javascript:void(0)" onclick="window.showGenre(/Strategy/);">
Strategy Games</a>
|
<a href="javascript:void(0)" onclick="window.showGenre(/3D/);">
3D Games</a>
|
<a href="javascript:void(0)" onclick="window.showOccasion('GMC Jam');">
GMC Jam Entries</a>
|
<a href="javascript:void(0)" onclick="window.showOccasion('Challenge');">
Other Contests</a>
|
<a href="javascript:void(0)" onclick="window.showOccasion('Joke');">
Joke Games</a>
|
<a href="javascript:void(0)" onclick="window.showOccasion('Project');">
Personal Projects</a>
</div>
<br/>
In which order?
<div style="margin:auto;">
<a href="javascript:void(0)" onclick="window.sortByName();">
By Name</a>
<a href="javascript:void(0)" onclick="window.sortByDate();">
By Date</a>
</div>
<br/>
<table id="games-table">
<tr>
<td>Loading...</td>
</tr>
</table>
</div>
<?php include('private/footer.php'); ?>
</body>
</html>