diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/single_photo.tpl | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index adeb9f8..4e043a1 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -55,21 +55,29 @@ </table> </div> </td> - <td style="white-space: nowrap;"> + <td style="width: 150px; padding-top: 40px;"> + <div id="photo_details"> { if $ExifMadeWith } - With: {$ExifMadeWith}<br /> + <u>Image taken with:</u><br /> + {$ExifMadeWith}<br /> { /if } { if $ExifMadeOn } + <u>Image made on:</u><br /> On: {$ExifMadeOn}<br /> { /if } { if $ExifOrigResolution } - Res: {$ExifOrigResolution}<br /> + <u>Original resolution:</u><br /> + {$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 } + <u>Size:</u> {$ExifFileSize}kbyte<br /> + { if $tags } + <br /> + <u>Tagged with:</u><br /> + { foreach from=$tags key=id item=name } + <a class="smalltag" href="javascript:Tags('add', '{$id}');" onclick="click(this);">{$name}</a><br /> + { /foreach } + { /if } + </div> </td> </tr> </table> |