~julian-lam/maccms/trunk

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
<?php 

	session_start();
	
	# Variables
	$prefix = ".";				# Prefix for relative links
	$title = "Credits";			# Title of the page
	
	# Including includes
	include "$prefix/config/config.php";	# General configuration file for all pages
	include "$prefix/includes/db.inc";	# DB access
	include "$prefix/includes/header.inc";	# Including HTML headers, etc
	
	# Process Records (if applicable)

?>

					<p class="blurb">
						MacCMS is a collaborative effort involving many talented individuals. Their contributions are listed below.
					</p>
					<div class="buttons">
						<a href="/">
							<img src="/images/home.png" alt="" />
							Home
						</a>
					</div>
					<hr />
				</td>
			</tr>
			<tr>
				<td class="left">
					<table class="generic">
						<tr>
							<th colspan="2">Programmers</th>
						</tr>
						<tr>
							<td>Julian Lam</td>
							<td>Project Manager<br />& Lead Programmer</td>
						</tr>
					</table>
				</td>
				<td class="right">
					<table class="generic">
						<tr>
							<th colspan="2">Artwork</th>
						</tr>
						<tr>
							<td>Everaldo Coelho</td>
							<td><a href="http://commons.wikimedia.org/wiki/Crystal_Clear">Crystal Clear Icon Set</a></td>
						</tr>
						<tr>
							<td>Mark James</td>
							<td><a href="http://www.famfamfam.com/lab/icons/silk/">Silk Icon Theme</a></td>
						</tr>
					</table>
				</td>
			</tr>
		</table>
		

<?php

	# Including includes
	include "$prefix/includes/footer.inc";

?>