diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/single_photo.tpl | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index d2d47c6..adeb9f8 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -2,7 +2,8 @@ <table> <tr> <td class="index_header" style="text-align: left;"> - <b>Photo {$image_name}</b>, {$c_date}, {$madewith}<br /> + <b>Photo {$image_name}</b><br /> + {$description}<br /> </td> <td class="index_header" style="text-align: right;"> <a href="{$image_url_full}" target="_blank" onclick="click(this);"> @@ -54,6 +55,22 @@ </table> </div> </td> + <td style="white-space: nowrap;"> + { if $ExifMadeWith } + With: {$ExifMadeWith}<br /> + { /if } + { if $ExifMadeOn } + On: {$ExifMadeOn}<br /> + { /if } + { if $ExifOrigResolution } + Res: {$ExifOrigResolution}<br /> + { /if } + Size: {$ExifFileSize}kbyte<br /> + Tagged:<br /> + { foreach from=$tags key=id item=name } + <a href="javascript:Tags('add', '{$id}');" onclick="click(this);">{$name}</a><br /> + { /foreach } + </td> </tr> </table> <!-- /Single photo --> |