aboutsummaryrefslogtreecommitdiffstats
path: root/modules/planet/templates/index.php
blob: 2247bf7c01798d80743e8faa37980a762394534d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<body>
<h1>Planet Mageia</h1>
<h3>Please choose one of the following locales:</h3>
<ul>
<?php
function displayloc($path = ''){
	return array_slice(scandir($path), 2);
}

foreach(displayloc('.') as $loc)
	if(is_dir($loc))
	{
		echo '<li><a href="'.$loc.'">'.$loc.'</a></li>';
	}
?>
</ul>
<h3>How to be listed in Planet Mageia</h3>
</body>
</html>