source: products/ploneorg.kudobounty/trunk/ploneorg/kudobounty/browser/bounty_collection_view.pt

Last change on this file was 3203, checked in by mylan, 13 years ago

Replaced alt to title attribute in <a> tag; added link to used shuffle algoryth in javascript

  • Property svn:eol-style set to native
File size: 973 bytes
Line 
1<metal:listingmacro define-macro="listing">
2
3<div id="portal-bounty-program" class=""
4     tal:condition="view/available">
5  <div class="helperText">
6    <span>Special thanks to the following companies and individuals for their recent contributions to improving Plone:</span>
7    <div class="moreInfo">       
8       <a href="http://" title="Kudo Bounty Program Submission Form"
9          tal:attributes="href view/bounty_form_url">
10       [Find out more about how you can contribute]</a>
11    </div>
12  </div>
13  <ul>
14    <li tal:repeat="item view/results" class="hidden">
15      <a href="http://submission.url"
16         title="Title of the submission"
17         tal:attributes="href item/getRemoteUrl;
18                         title item/Title;">
19        <img src="http://submission/image_bounty"
20             alt="Alternate text for the image"
21             tal:attributes="src string:${item/getURL}/image_bounty;
22                             alt item/Description;"/></a>
23    </li>
24  </ul>
25 
26</div>
27
28</metal:listingmacro>
Note: See TracBrowser for help on using the repository browser.