So you want like one page, and its a gallery, so when they click on a link or thumbnail it will show up in a premade template? OKay, the links will need to be like this:
<a href="domain.com/template.php?image=folder/folder2/image.png">this image</a>
and on the page in the template where you want it to show put this:
<img src="<?php echo $_GET['image']; ?>" alt="blah" />
So you will need to figure out how you want to put the folder location and such..