slitaz-forge view people/index.php @ rev 39

people: Update to new style and layout
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 28 15:12:12 2011 +0200 (2011-03-28)
parents 1fa6db906aa3
children 0e91bc735875
line source
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5 <title>SliTaz People</title>
6 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
7 <meta name="description" content="slitaz people" />
8 <meta name="keywords" lang="en" content="slitaz network, slitaz developpers, slitaz contributors" />
9 <meta name="robots" content="index, follow, all" />
10 <meta name="modified" content="<?php echo (date( "Y-m-d H:i:s", getlastmod())); ?>" />
11 <meta name="author" content="Christophe Lincoln"/>
12 <link rel="shortcut icon" href="favicon.ico" />
13 <link rel="stylesheet" type="text/css" href="slitaz.css" />
14 </head>
15 <body>
17 <!-- Header -->
18 <div id="header">
19 <div id="logo"></div>
20 <div id="network">
21 <a href="http://www.slitaz.org/">
22 <img src="images/network.png" alt="network.png" /></a>
23 <a href="http://scn.slitaz.org/">Community</a>
24 <a href="http://doc.slitaz.org/">Doc</a>
25 <a href="http://forum.slitaz.org/">Forum</a>
26 <a href="http://labs.slitaz.org/issues">Bugs</a>
27 <a href="http://hg.slitaz.org/">Hg</a>
28 </div>
29 <h1><a href="http://people.slitaz.org/">SliTaz People</a></h1>
30 </div>
32 <!-- Block -->
33 <div id="block">
34 <!-- Navigation -->
35 <div id="block_nav">
36 <h4><img src="images/development.png" alt="development.png" />Developers Corner</h4>
37 <ul>
38 <li><a href="http://www.slitaz.org/en/devel/">Website devel</a></li>
39 <li><a href="http://scn.slitaz.org/">Community</a></li>
40 <li><a href="http://labs.slitaz.org/">Laboratories</a></li>
41 <li><a href="http://hg.slitaz.org/">Mercurial Repos</a></li>
42 <li><a href="http://bb.slitaz.org/">Build Bot</a></li>
43 <li><a href="http://tank.slitaz.org/">Tank Server</a></li>
44 </ul>
45 </div>
46 <!-- Information/image -->
47 <div id="block_info">
48 <h4>People</h4>
49 <p>
50 Each contributor who has access to the project main server,
51 code name <a href="http://tank.slitaz.org/">Tank</a>, can
52 have a public directory to put personal stuff related to SliTaz.
53 This Public directory can be reached with URLs in the form of:
54 http://people.slitaz.org/~contributors/. More information on
55 <a href="http://www.slitaz.org/">SliTaz Website</a> and
56 <a href="http://labs.slitaz.org/">SliTaz Labs</a>.
57 </p>
58 </div>
59 </div>
61 <!-- Content -->
62 <div id="content">
64 <h2>SliTaz people</h2>
66 <ul>
67 <?php
68 if ($handle = opendir('/home')) {
69 while (false !== ($dir = readdir($handle))) {
70 if ($dir != "." && $dir != "..") {
71 $pub = "/home/$dir/Public";
72 $user = "$dir";
73 if (file_exists($pub)) {
74 echo " <li><a href=\"/~$user/\">$user</a></li>\n";
75 }
76 }
77 }
78 closedir($handle);
79 }
80 ?>
81 </ul>
83 <!-- End of content -->
84 </div>
86 <div style="margin-top: 100px;"></div>
88 <!-- Footer -->
89 <div id="footer">
90 Copyright &copy; <span class="year"></span>
91 <a href="http://www.slitaz.org/">SliTaz</a> - Network:
92 <a href="http://scn.slitaz.org/">Community</a>
93 <a href="http://doc.slitaz.org/">Doc</a>
94 <a href="http://forum.slitaz.org/">Forum</a>
95 <a href="http://pkgs.slitaz.org/">Packages</a>
96 <a href="http://labs.slitaz.org/issues">Bugs</a>
97 <a href="http://hg.slitaz.org/">Hg</a>
98 <p>
99 SliTaz @
100 <a href="http://twitter.com/slitaz">Twitter</a>
101 <a href="http://www.facebook.com/slitaz">Facebook</a>
102 <a href="http://distrowatch.com/slitaz">Distrowatch</a>
103 <a href="http://en.wikipedia.org/wiki/SliTaz">Wikipedia</a>
104 <a href="http://flattr.com/profile/slitaz">Flattr</a>
105 </p>
106 </div>
108 </body>
109 </html>