/usr/share/lazygal/themes/default/image.thtml is in lazygal 0.8.8-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <div xmlns:py="http://genshi.edgewall.org/"
id="image">
<div id="image_img">
<img src="$img_src" width="$img_width" height="$img_height" alt="Image $image_name" />
</div>
<div id="image_caption">
<div class="image_comment" py:if="comment">$comment</div>
<div class="image_date" py:if="image_datetime">
${_('Taken')} ${image_datetime.strftime(_('on %d/%m/%Y at %H:%M'))}
</div>
<div class="authorship" py:if="authorship">${_('Author')} : $authorship</div>
<div class="keywords" py:if="keywords">${_('Keywords')} : $keywords</div>
<div py:if="original_link" class="original_link"><a href="$original_link">${_('Original picture')}</a></div>
<div class="image_caption_tech">
<ul>
<li>$image_name</li>
<li py:if="camera_name">${_('Camera:')} $camera_name
<py:if test="lens_name"> ${_('with')} $lens_name</py:if>
</li>
<li py:if="exposure">${_('Exposure')} $exposure</li>
<li py:if="iso">${_('Sensitivity ISO')} $iso</li>
<li py:if="fnumber">${_('Aperture')} $fnumber</li>
<li py:if="flash">${_('Flash')} $flash</li>
<li py:if="focal_length">${_('Focal length')} $focal_length</li>
</ul>
</div>
</div>
</div>
<!--! vim: set fenc=utf-8 ts=4 sw=4 expandtab: -->
|