templates/taggr_dir.html
changeset 23 10841abbc01f
child 24 001f52cd057e
equal deleted inserted replaced
22:72696ca68c34 23:10841abbc01f
       
     1 % if subdirs :
       
     2 <ul>
       
     3 %   for name, path in subdirs :
       
     4     <li>
       
     5         <a href="#" class="directory_link">${name}</a>
       
     6         <div id="${path}" style="display: none" >
       
     7 
       
     8         </div>
       
     9     </li>
       
    10 %   endfor                    
       
    11 </ul>
       
    12 % endif
       
    13 
       
    14 <div class="images">
       
    15 % for key, image in images :
       
    16     <img src="../${image}" onload="image_loaded(this)" class="image" id="${key}" />
       
    17 % endfor
       
    18 </div>
       
    19