root/branches/release-36/default_templates/date_based_category_archives.mtml @ 2052

Revision 2052, 2.5 kB (checked in by fumiakiy, 19 months ago)

Integrated Widget Manager to the core. BugId:68750

Now a widgetset is another type of template. The widgets contained in a widgetset is stored in a meta field.

  • Property svn:keywords set to Id Date Author Revision
Line 
1<mt:IfArchiveTypeEnabled archive_type="Category-Yearly">
2    <mt:ArchiveList archive_type="Category-Yearly">
3        <mt:ArchiveListHeader>
4<div class="widget-archive-category-yearly widget-archive widget">
5    <h3 class="widget-header"><__trans phrase="Category Yearly Archives"></h3>
6    <div class="widget-content">
7        <ul class="widget-list">
8        </mt:ArchiveListHeader>
9            <li class="widget-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> (<$mt:ArchiveCount$>)</a></li>
10        <mt:ArchiveListFooter>
11        </ul>
12    </div>
13</div>
14        </mt:ArchiveListFooter>
15    </mt:ArchiveList>
16</mt:IfArchiveTypeEnabled>
17
18<mt:IfArchiveTypeEnabled archive_type="Category-Monthly">
19    <mt:ArchiveList archive_type="Category-Monthly">
20        <mt:ArchiveListHeader>
21<div class="widget-archive-category-monthly widget-archive widget">
22    <h3 class="widget-header"><__trans phrase="Category Monthly Archives"></h3>
23    <div class="widget-content">
24        <ul class="widget-list">
25        </mt:ArchiveListHeader>
26            <li class="widget-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> (<$mt:ArchiveCount$>)</a></li>
27        <mt:ArchiveListFooter>
28        </ul>
29    </div>
30</div>
31        </mt:ArchiveListFooter>
32    </mt:ArchiveList>
33</mt:IfArchiveTypeEnabled>
34
35<mt:IfArchiveTypeEnabled archive_type="Category-Weekly">
36    <mt:ArchiveList archive_type="Category-Weekly">
37        <mt:ArchiveListHeader>
38<div class="widget-archive-category-weekly widget-archive widget">
39    <h3 class="widget-header"><__trans phrase="Category Weekly Archives"></h3>
40    <div class="widget-content">
41        <ul class="widget-list">
42        </mt:ArchiveListHeader>
43            <li class="widget-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> (<$mt:ArchiveCount$>)</a></li>
44        <mt:ArchiveListFooter>
45        </ul>
46    </div>
47</div>
48        </mt:ArchiveListFooter>
49    </mt:ArchiveList>
50</mt:IfArchiveTypeEnabled>
51
52<mt:IfArchiveTypeEnabled archive_type="Category-Daily">
53    <mt:ArchiveList archive_type="Category-Daily">
54        <mt:ArchiveListHeader>
55<div class="widget-archive-category-daily widget-archive widget">
56    <h3 class="widget-header"><__trans phrase="Category Daily Archives"></h3>
57    <div class="widget-content">
58        <ul class="widget-list">
59        </mt:ArchiveListHeader>
60            <li class="widget-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> (<$mt:ArchiveCount$>)</a></li>
61        <mt:ArchiveListFooter>
62        </ul>
63    </div>
64</div>
65        </mt:ArchiveListFooter>
66    </mt:ArchiveList>
67</mt:IfArchiveTypeEnabled>
68
Note: See TracBrowser for help on using the browser.