source: products/quintagroup.quills.extras/trunk/quintagroup/quills/extras/portlets/archive.pt @ 1257

Last change on this file since 1257 was 662, checked in by chervol, 17 years ago

added license, readme and history updated, version burst

File size: 996 bytes
Line 
1<dl class="portlet portletWeblogArchive"
2    i18n:domain="plone"
3    tal:define="years view/getSubArchives;"
4    tal:condition="years">
5
6    <dt class="portletHeader">
7        <span class="portletTopLeft"></span>
8        <span class="tile"
9              tal:content="view/title">_title_</span>
10        <span class="portletTopRight"></span>
11    </dt>
12
13    <dd class="portletItem lastItem">
14        <ul tal:repeat="year years">
15            <li>
16                <h5 tal:content="year/title">year title</h5>
17                <ul tal:define="months year/months">
18                    <li tal:repeat="month months">
19                        <a href=""
20                            tal:attributes="href month/murl">
21                            <span i18n:translate="" i18n:domain="plone" tal:content="python: view.getMonthName(month['mid'])" />&nbsp;(<b tal:content="month/mlen"/>)
22                        </a>
23                    </li>
24                </ul>
25            </li>
26        </ul>
27    </dd>
28</dl>
Note: See TracBrowser for help on using the repository browser.