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

« back to all changes in this revision

Viewing changes to themes/inverted/browse.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
<!DOCTYPE HTML>
 
2
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
 
3
    xmlns:py="http://genshi.edgewall.org/"
 
4
    xmlns:xi="http://www.w3.org/2001/XInclude">
 
5
 
 
6
<!--! <head>  -->
 
7
<xi:include href="header.thtml"/>
 
8
 
 
9
<body>
 
10
    <!--! Main site content  -->
 
11
    <div id="main_container">
 
12
        <div id="main" class="wrapper clearfix">
 
13
 
 
14
            <!--! Breadcrumbs -->
 
15
            <div class="breadcrumbs">
 
16
                <ul>
 
17
                    <li py:for="webgal in webgal_path">
 
18
                        <a href="${webgal.link}" py:content="webgal.name + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;»&nbsp;'" />
 
19
                    </li>
 
20
                    <li>
 
21
                        <a class="bc_current" href="" py:content="name" />
 
22
                    </li>
 
23
                </ul>
 
24
            </div>
 
25
 
 
26
            <!--! Image size options -->
 
27
            <div class="image_size" py:if="len(osize_links) > 1">
 
28
                <ul>
 
29
                    <li py:for="osize_link in osize_links">
 
30
                        <span py:if=" not osize_link.link"
 
31
                           href="$osize_link.link">$osize_link.name</span>
 
32
                        <a py:if="osize_link.link"
 
33
                           href="$osize_link.link">$osize_link.name</a>
 
34
                    </li>
 
35
                </ul>
 
36
            </div>
 
37
 
 
38
        </div> <!-- #main -->
 
39
 
 
40
        <!--! Display media (image or video) -->
 
41
        <xi:include href="${mediatype}.thtml" />
 
42
 
 
43
    </div> <!-- #main_container -->
 
44
 
 
45
    <!--! Site footer  -->
 
46
    <xi:include href="footer.thtml" />
 
47
 
 
48
</body>
 
49
</html>