source: main/kwarapoly.theme/trunk/kwarapoly/theme/browser/templates/bannerviewlet.pt @ 10866

Last change on this file since 10866 was 10866, checked in by Henrik Bettermann, 11 years ago

Fill trunk

File size: 1.1 KB
Line 
1<div style="display:none" i18n:domain="kwarapoly.theme">
2        <div class="full-col">
3                <h4 class="title" i18n:translate="">&raquo; Partners</h4>
4                <div id="partners-tile" class="gradient-radius-module">
5                        <table>
6                                <tr>
7                                        <td tal:repeat="banner view/banner">
8                                                <div>
9                                        <a target="_blank" tal:attributes="href banner/link">
10                                                <!--<img class="banner-image border-radius"
11                                                         tal:define="picture nocall:banner/picture"
12                                                         tal:condition="nocall:picture"
13                                                         tal:attributes="src string:${banner/absolute_url}/@@download/picture/${picture/filename};
14                                                                         height picture/height | nothing;
15                                                                         width picture/width | nothing;"
16                                                />-->
17                                                <img tal:define="scales banner/@@images;
18                                                                                 thumbnail python: scales.scale('picture', width=300, height=80);"
19                                                         tal:condition="thumbnail"
20                                                         tal:attributes="src thumbnail/url;
21                                                                 width thumbnail/width;
22                                                                 height thumbnail/height" />
23                                                <span class="title" tal:content="banner/title"></span>
24                                               
25                                        </a>
26                                        </div>
27                                </td>
28                                </tr>
29                        </table>
30                        <div class="clear">&nbsp;</div>
31                </div>
32        </div>
33</div>
Note: See TracBrowser for help on using the repository browser.