diff options
author | Arun Persaud <arun@nubati.net> | 2010-09-21 20:34:30 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2010-09-21 20:34:30 -0700 |
commit | 21f25368b52c73be131cf3ad2d0cb7d1a567eb2a (patch) | |
tree | 951d528593d1c6a797633d8d98b5ce59acc32317 /include/about.php | |
parent | bbd5682c50f3bba8b7eb199392eaf0e0c0ff7c19 (diff) | |
parent | f94dd2d6d58f37306d1da0f6bb12f5276883cd6b (diff) | |
download | e-DoKo-21f25368b52c73be131cf3ad2d0cb7d1a567eb2a.tar.gz e-DoKo-21f25368b52c73be131cf3ad2d0cb7d1a567eb2a.tar.bz2 e-DoKo-21f25368b52c73be131cf3ad2d0cb7d1a567eb2a.zip |
Merge branch 'master' of /home/arun/nubati.net/git/e-DoKo
Diffstat (limited to 'include/about.php')
-rw-r--r-- | include/about.php | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/include/about.php b/include/about.php new file mode 100644 index 0000000..ad39eaf --- /dev/null +++ b/include/about.php @@ -0,0 +1,68 @@ +<?php +/* Copyright 2010 Arun Persaud <arun@nubati.net> + * + * This file is part of e-DoKo. + * + * e-DoKo is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * e-DoKo is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with e-DoKo. If not, see <http://www.gnu.org/licenses/>. + * + */ + +/* make sure that we are not called from outside the scripts, + * use a variable defined in config.php to check this + */ +if(!isset($HOST)) + exit; + +echo ' +<div class="about"> + +<div class="code"> +<h3>Coding</h3> + <ul> + <li> Arun Persaud </li> + <li> Sean Brennan </li> + </ul> +</div> + +<div class="database"> +<h3>Database support</h3> + <ul> + <li> Arun Persaud </li> + <li> Jeff Zerger</li> + </ul> +</div> + +<div class="graphics"> +<h3> Graphics </h3> + <ul> + <li> Lance Thornton </li> + <li> Frances Allen </li> + <li> Arun Persaud </li> + </ul> +</div> + +<div class="translation"> +<h3>Translation</h3> + <ul> + <li> German + <ul> + <li> Arun Persaud </li> + <li> BK </li> + </ul> + </li> + </ul> +</div> +</div> +' +?> |