<!-- This is an example chunk for getImages to display an image with Name and Date. The tags it uses are: +class - A placeholder to add a class to your div for styling. defaults to "" +imgLink - The placeholder for the image link. +path - The placeholder to set the image path. +imgFile - The placeholder to set the image file name +infoClass - A placeholder to add a class to your div for styling. defaults to "" +imgName - The placeholder to set the image name. +exifClass - A placeholder to add a class to your div for styling. defaults to "" +imgDate - The placeholder to set the image exif date data. By using the path and imgFile tags instead of the imgLink tag I am able to have the page display thumbnails I have in a hidden folder. (In this case the folder is named .thumbs and each image has a prefix of lr_ and the link still points to the full size image. --> <div class="[[+class]]"> <a href="[[+imgLink]]" target="_blank"> <img src="[[+path]].thumbs/lr_[[+imgFile]]" alt="[[+imgLink]]" /> </a> <div class="[[+infoClass]]"> [[+imgName]] <div class="[[+exifClass]]"> Date/Time - [[+imgDate]] </div> </div> </div>