/usr/share/gthumb/albumthemes/NeatRound/image.gthtml is in gthumb-data 3:3.4.3-1.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%= language %>" lang="<%= language %>">
<head>
<% if images > 1 %>
<title><%= header %> (<%= image_idx %>/<%= images %>)</title>
<% else %>
<title><%= header %></title>
<% end %>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Generator" content="gThumb Image Viewer" />
<link href="<%= theme_link src="layout.css" %>" rel="stylesheet" type="text/css" />
<link href="<%= theme_link src="style.css" %>" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrapper">
<div id="main">
<h1 class="image-title">
<%= header %>
</h1>
<ul class="navigation-bar">
<li class="index">
<a href="<%= page_link idx_relative="0" image_idx %>" title="<%= translate 'Go back to the index' %>">
<span><%= translate 'Go back to the index' %></span>
</a>
</li>
<% if image_idx < images %>
<li class="next-image">
<a href="<%= image_link idx_relative="+1" %>" title="<%= translate 'View the next image' %>">
<span><%= translate 'View the next image' %></span>
</a>
</li>
<% else %>
<li class="void">
</li>
<% end %>
<li class="current-image">
<span><%= image_idx %> / <%= images %></span>
</li>
<% if image_idx > 1 %>
<li class="previous-image">
<a href="<%= image_link idx_relative="-1" %>" title="<%= translate 'View the previous image' %>">
<span><%= translate 'View the previous image' %></span>
</a>
</li>
<% else %>
<li class="void">
</li>
<% end %>
<li class="last">
</li>
</ul>
<% if image_description_enabled || image_attributes_enabled %>
<div class="image-preview">
<% else %>
<div class="image-preview image-preview-centered">
<% end %>
<% if copy_originals %>
<a href="<%= file_name with_relative_path %>"><%= image preview class="preview" %></a>
<% else %>
<%= image preview class="preview" %>
<% end %>
</div>
<% for_each image_caption %>
<% if first_item %>
<dl class="caption-container">
<% end %>
<dt class="property"> <%= item_attribute display_name %> </dt>
<dd class="property-value"> <%= item_attribute value %> </dd>
<% if last_item %>
<dt class="last property"></dt>
<dd class="last property-value"></dd>
</dl>
<% end %>
<% end %>
<% if image_description_enabled && image_attribute_available('general::description') %>
<div class="image-comment">
<%= image_attribute id="general::description" %>
</div>
<% end %>
</div>
</div>
<div id="footer">
<div id="footer-2">
<%= footer %>
</div>
</div>
</body>
</html>
|