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

boot: Update to new style and layout
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 28 15:10:53 2011 +0200 (2011-03-28)
parents 7775f0e4d0eb
children b770976fff5d
line source
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.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 contributors stuff" />
8 <meta name="robots" content="index, nofollow" />
9 <meta name="modified" content="<?php echo (date( "Y-m-d H:i:s", getlastmod())); ?>" />
10 <meta name="publisher" content="www.slitaz.org" />
11 <link rel="shortcut icon" href="favicon.ico" />
12 <link rel="stylesheet" type="text/css" href="slitaz.css" />
13 </head>
14 <body>
16 <!-- Content -->
17 <div id="content">
19 <!-- Block begin -->
20 <div class="block">
21 <!-- Nav block begin -->
22 <div id="block_nav" style="min-height: 200px;">
23 <h3><img src="pics/website/development.png" alt="png" />Devel corner</h3>
24 <ul>
25 <li><a href="http://www.slitaz.org/en/devel/">Website/devel</a></li>
26 <li><a href="http://labs.slitaz.org/">Laboratories</a></li>
27 <li><a href="http://hg.slitaz.org/">Mercurial Repos</a></li>
28 <li><a href="http://bb.slitaz.org/">Build Bot</a></li>
29 <li><a href="http://scn.slitaz.org/">Community Network</a></li>
30 <li><a href="http://pkgs.slitaz.org/">Packages</a></li>
31 <li><a href="http://tank.slitaz.org/">Tank Server</a></li>
32 </ul>
33 <!-- Nav block end -->
34 </div>
35 <!-- Top block begin -->
36 <div id="block_top" style="min-height: 200px;">
37 <h1>people.slitaz.org</h1>
38 <p>
39 Each contributor who has access to the project main server,
40 code name <a href="http://tank.slitaz.org/">Tank</a>, can
41 have a public directory to put personal stuff related to SliTaz.
42 This Public directory can be reached with URLs in the form of:
43 http://people.slitaz.org/~contributors/. More information on
44 <a href="http://www.slitaz.org/">SliTaz Website</a> and
45 <a href="http://labs.slitaz.org/">SliTaz Labs</a>.
46 </p>
47 <!-- Top block end -->
48 </div>
49 <!-- Block end -->
50 </div>
52 <h2>SliTaz people</h2>
54 <ul>
55 <?php
56 if ($handle = opendir('/home')) {
57 while (false !== ($dir = readdir($handle))) {
58 if ($dir != "." && $dir != "..") {
59 $pub = "/home/$dir/Public";
60 $user = "$dir";
61 if (file_exists($pub)) {
62 echo " <li><a href=\"/~$user/\">$user</a></li>\n";
63 }
64 }
65 }
66 closedir($handle);
67 }
68 ?>
69 </ul>
71 <!-- End of content -->
72 </div>
74 <!-- Footer -->
75 <div id="footer">
76 <div class="right_box">
77 <h4>SliTaz Network</h4>
78 <ul>
79 <li><a href="http://www.slitaz.org/">Main Website</a></li>
80 <li><a href="http://doc.slitaz.org/">Documentation</a></li>
81 <li><a href="http://forum.slitaz.org/">Support Forum</a></li>
82 <li><a href="http://scn.slitaz.org/">Community Network</a></li>
83 <li><a href="http://labs.slitaz.org/">Laboratories</a></li>
84 <li><a href="http://twitter.com/slitaz">SliTaz on Twitter</a></li>
85 <li><a href="http://distrowatch.com/slitaz">SliTaz on DistroWatch</a></li>
86 </ul>
87 </div>
88 <h4>Informations</h4>
89 <ul>
90 <li>Copyright &copy; <span class="year"></span>
91 <a href="http://www.slitaz.org/">SliTaz</a></li>
92 <li><a href="http://www.slitaz.org/en/about/">About the project</a></li>
93 <li><a href="http://www.slitaz.org/netmap.php">Network Map</a></li>
94 <li>Page modified the <?php echo (date( "d M Y", getlastmod())); ?></li>
95 <li><a href="http://validator.w3.org/check?uri=referer"><img
96 src="pics/website/xhtml10.png" alt="Valid XHTML 1.0"
97 title="Code validé XHTML 1.0"
98 style="width: 80px; height: 15px; vertical-align: middle;" /></a></li>
99 </ul>
100 </div>
102 </body>
103 </html>