1
0
mirror of https://github.com/sjlongland/tornado-gallery.git synced 2025-09-13 08:42:23 +10:00

photo template: Use photo.html for navigation buttons.

This commit is contained in:
Stuart Longland 2018-04-18 18:06:17 +10:00
parent 84958801fe
commit d912ed45c1
Signed by: stuartl
GPG Key ID: 6AA32EFB18079BAA

View File

@ -52,11 +52,11 @@ body {
<table width="100%" class="controls" id="controls">
<tr>
<td class="firstlink"><a class="button" accesskey="["
href="{{site_uri}}/{{gallery.name}}/{{gallery.first}}?{{page_query}}"><img
href="{{site_uri}}/{{gallery.name}}/{{gallery.first}}/photo.html?{{page_query}}"><img
alt="|&lt;- First" src="{{static_uri}}/images/start.png"
border="0" align="absmiddle" /></a></td>
<td class="prevlink"><a class="button" accesskey=","
href="{{site_uri}}/{{gallery.name}}/{{photo.prev}}?{{page_query}}"><img
href="{{site_uri}}/{{gallery.name}}/{{photo.prev}}/photo.html?{{page_query}}"><img
alt="&lt;- Prev" src="{{static_uri}}/images/back.png"
border="0" align="absmiddle" /></a></td>
<td class="status"><a class="button" accesskey="l"
@ -73,10 +73,10 @@ body {
src="{{static_uri}}/images/top.png"
border="0" align="absmiddle" /></a></td>
<td class="nextlink"><a class="button" accesskey="."
href="{{site_uri}}/{{gallery.name}}/{{photo.next}}?{{page_query}}"><img alt="-&gt; Next" src="{{static_uri}}/images/forward.png" border="0"
href="{{site_uri}}/{{gallery.name}}/{{photo.next}}/photo.html?{{page_query}}"><img alt="-&gt; Next" src="{{static_uri}}/images/forward.png" border="0"
align="absmiddle" /></a></td>
<td class="lastlink"><a class="button" accesskey="]"
href="{{site_uri}}/{{gallery.name}}/{{gallery.last}}?{{page_query}}"><img
href="{{site_uri}}/{{gallery.name}}/{{gallery.last}}/photo.html?{{page_query}}"><img
alt="-&gt;| Last" src="{{static_uri}}/images/finish.png"
border="0" align="absmiddle" /></a></td>
</tr>