templates/image.html
author terom
Wed, 16 Jan 2008 14:58:03 +0000
changeset 19 8d3ffd87cb0b
parent 16 980825f2aeed
child 23 10841abbc01f
permissions -rw-r--r--
* move cgi-bin to de-cgi-bin so it doesn't conflict with my default alias... need to come up with a real solution to this
* refactored series/shorturl into the new codebase
<%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">
% if img_size and file_size and timestamp :    
      <p>${filename}</p>
      <p>${h.format_imgsize(img_size)}</p>
      <p>${h.format_filesize(file_size)}</p>
      <p>${h.format_timestamp(timestamp)}</p>
% endif    
      <p>ShortURL: <a href="${shorturl}" rel="nofollow">${shorturl_code}</a></p>
% if series_url :      
      <p><a href="${series_url}" rel="nofollow">${series_verb}</a> series</p>
% endif      
    </div>