Ok,
you can reach this easily with a few lines of code, there is IMHO no need for a module.
1. Create a page type "code"
2. Copy this code in it:
$path = '../media/mypics/';
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != ".." && $file != "index.php") {
$pic = $path.$file;
echo '<img src="'.$pic.'" alt="" />';
echo '<br />';
}
}
closedir($handle);
}
3. Set in the first line the $path to the correct path where your pics are
4. Style the HTML-output around line 6 like you want
5. Enjoy
Regards Bernd