source: products/quintagroup.quills.extras/trunk/quintagroup/quills/extras/portlets/recent_author.pt @ 1579

Last change on this file since 1579 was 1579, checked in by fenix, 14 years ago

added recent portlet comment, fixed styles for recent author portlet

File size: 1.2 KB
Line 
1<dl class="portlet portletWeblogAuthors"
2    i18n:domain="plone">
3
4    <dt class="portletHeader hiddenStructure">
5        <span class="portletTopLeft"></span>
6        <a class="tile"
7           tal:content="view/title"
8           tal:attributes="href view/getAuthorsURL">_title_</a>
9        <span class="portletTopRight"></span>
10    </dt>
11
12    <dd class="portletItem"
13        metal:define-macro="author"
14        tal:define="author view/getRecentAuthor;
15                    portrait python: view.getPortraitFor(author);
16                    authorinfo python: view.getInfoFor(author);
17                    author_listing_url python:view.getAuthorURL(authorinfo['username']);">
18
19      <a href=""
20         tal:attributes="href author_listing_url">
21          <img src=""
22               alt=""
23               title=""
24               class="portraitPhoto"
25               tal:attributes="src portrait/absolute_url;
26                               alt authorinfo/fullname;
27                               title authorinfo/fullname;" />
28      </a>
29      <div class="visualClear"><!----></div>
30
31    </dd>
32
33    <dd class="portletFooter">
34        <span class="portletBottomLeft"></span>
35        <span class="portletBottomRight"></span>
36    </dd>
37
38</dl>
Note: See TracBrowser for help on using the repository browser.