templates/image.html
author terom
Fri, 21 Dec 2007 22:14:01 +0000
changeset 16 980825f2aeed
parent 12 c2d8e9a754a1
child 19 8d3ffd87cb0b
permissions -rw-r--r--
fix settings.IMAGE_COUNT back to 50, and fix image.html to link to the raw image, not itself
<%inherit file="master.html" /> <!-- %> -->

    <div id="image">
        <h1>${title}</h1>
        <p>
% if prev :        
            ${h.tag_for_img(prev.html_name, prev.thumb_name)}
% endif
            
            ${h.tag_for_img(img.name, img.preview_name)}
            
% if next :            
            ${h.tag_for_img(next.html_name, next.thumb_name)}
% endif
        </p>
        <p>
            ${description}
        </p>
    </div>
    <div id="info">
      <p>${filename}</p>
      <p>${h.format_imgsize(img_size)}</p>
      <p>${h.format_filesize(file_size)}</p>
      <p>${h.format_timestamp(timestamp)}</p>
      <p>ShortURL: <a href="${shorturl}" rel="nofollow">${shorturl_code}</a></p>
      <p><a href="${series_url}" rel="nofollow">${series_verb}</a> series</p>
    </div>