BUGIFX: when playing a silent solo the "pre" trick showed up in the list of tricks
[e-DoKo.git] / include / about.php
1 <?php
2 /* Copyright 2010 Arun Persaud <arun@nubati.net>
3  *
4  *   This file is part of e-DoKo.
5  *
6  *   e-DoKo is free software: you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, either version 3 of the License, or
9  *   (at your option) any later version.
10  *
11  *   e-DoKo is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 /* make sure that we are not called from outside the scripts,
22  * use a variable defined in config.php to check this
23  */
24 if(!isset($HOST))
25   exit;
26
27 echo '
28 <div class="about">
29
30 <div class="code">
31 <h3>Coding</h3>
32  <ul>
33     <li> Arun Persaud </li>
34     <li> Sean Brennan </li>
35  </ul>
36 </div>
37
38 <div class="database">
39 <h3>Database support</h3>
40  <ul>
41     <li> Arun Persaud </li>
42     <li> Jeff Zerger</li>
43  </ul>
44 </div>
45
46 <div class="graphics">
47 <h3> Graphics </h3>
48  <ul>
49     <li> Lance Thornton </li>
50     <li> Frances Allen </li>
51     <li> Arun Persaud  </li>
52  </ul>
53 </div>
54
55 <div class="translation">
56 <h3>Translation</h3>
57  <ul>
58   <li> German
59     <ul>
60       <li> Arun Persaud </li>
61       <li> BK </li>
62     </ul>
63   </li>
64  </ul>
65 </div>
66 </div>
67 '
68 ?>