forked from derbear/bellbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
62 lines (54 loc) · 2.2 KB
/
about.php
File metadata and controls
62 lines (54 loc) · 2.2 KB
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
<? require("util/header.php"); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="style.css" />
<title>About bellbook</title><?php $pagetitle = 'About bellbook'; ?>
</head>
<body>
<? print_header(); //opens real-content conten-container and content divs?>
<div id="content-title"><h2> About bellbook </h2></div>
<div> <p> bellbook is a web application written in PHP for students of
Bellarmine College Prep. Its purpose is to coordinate
of buying and selling of books between incoming and
outgoing freshmen, sophomores, juniors, and seniors. </p>
</div>
<hr class="title-line"/>
<div> <h1> 2012 </h1>
<p> Contributors: </p>
<ol>
<li> Development head: Derek Leung '12 </li>
<li> Design head: Ben Chan '13 </li>
<li> Design (logo): Michael Youngdahl '12 </li>
<li> Development: Bhargava Manja '12 </li>
<li> Development: James Thomas '12 </li>
<li> Development: Saurabh Sharan '12 </li>
</ol>
</div>
<hr class="title-line"/>
<div> <h1> 2011 </h1>
<p> Contributors:</p>
<ol>
<li>Development head: Derek Leung '12</li>
<li>Design head: Ben Chan '13</li>
<li>Marketing head: Arun Pingali '12</li>
<li>Development & Marketing: David Byrd '11</li>
<li>Design: Danny Hernandez '12</li>
</ol>
</div>
<div> <p> Other acknowledgments:</p>
<ol>
<li>Conception: Kyle Suppes '12</li>
<li>Technical Assistance: Michael Culhane '11</li>
<li>Technical Assistance: Chris Thibodeau '11</li>
</ol>
</div>
<? require("util/footer.php"); // footer MUST close real-content, content-container and content divs opened in header?>
</body>
</html>
<!--
Authors: Derek Leung + Ben Chan (resturcturing)[may 15, 2011]
Project BellBook - 1.0
Bellarmine College Preparatory, 2011
-->