~ubuntu-branches/ubuntu/utopic/lazygal/utopic

« back to all changes in this revision

Viewing changes to themes/inverted/thumb.thtml

  • Committer: Package Import Robot
  • Author(s): Michal Čihař, Michal Čihař, Jakub Wilk
  • Date: 2013-06-06 12:05:08 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20130606120508-e3g94vl8w9pw7za7
Tags: 0.8-1
[ Michal Čihař ]
* New upstream release.
  - Uses new Genshi templates (Closes: #696682).
  - Correctly handles wronly encoded artist in EXIF (Closes: #696648).
  - Uses GExiv2 (LP: #1074028).
* Depend on GExiv2 instead of pyexiv2.
* Bump standards to 3.9.4.
* Use debhelper 9.

[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<div xmlns:py="http://genshi.edgewall.org/"
 
2
     class="media_thumb media_$media.type">
 
3
 
 
4
    <!--! Display media thumb -->
 
5
    <a href="$media.link"><img class="thumb_image media_$media.type"
 
6
                               src="$media.thumb"
 
7
                               width="$media.thumb_width"
 
8
                               height="$media.thumb_height"
 
9
                               title="$media.thumb_name thumb" /></a>
 
10
    <a py:if="media.type == 'video'"
 
11
       href="$media.link">
 
12
       <img class="video_arrow" src="${rel_root}shared/video_arrow.svg" alt="video arrow overlay" />
 
13
       <span class="video_length" py:content="media.length" />
 
14
    </a>
 
15
</div>