1 |
<html> |
2 |
<body> |
3 |
<h1>Planet Mageia</h1> |
4 |
<h3>Please choose one of the following locales:</h3> |
5 |
<ul> |
6 |
<?php |
7 |
function displayloc($path = ''){ |
8 |
return array_slice(scandir($path), 2); |
9 |
} |
10 |
|
11 |
foreach(displayloc('.') as $loc) |
12 |
if(is_dir($loc) && $loc != "test" && $loc != "test-2") |
13 |
{ |
14 |
echo '<li><a href="'.$loc.'">'.$loc.'</a></li>'; |
15 |
} |
16 |
?> |
17 |
</ul> |
18 |
<h3>How to be listed in Planet Mageia:</h3> |
19 |
<ul> |
20 |
<li>just candidate by sending us a RSS feed talking about Mageia in only one locale.</li> |
21 |
</ul> |
22 |
</body> |
23 |
</html> |