root/branches/release-33/default_templates/category_entry_listing.mtml @ 1709

Revision 1709, 2.9 kB (checked in by fumiakiy, 20 months ago)

Merged the latest checkins to release-32 branch to the current dev branch. svn merge -r1669:1708 http://code.sixapart.com/svn/movabletype/branches/release-32 .

  • Property svn:executable set to *
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard">
4<head>
5    <title><$MTBlogName encode_html="1"$>: <__trans phrase="[_1] Archives" params="<$MTArchiveTitle$>"></title>
6    <$mt:include module="<__trans phrase="HTML Head">"$>
7<mt:ignore>
8    <!-- Include Next and Previous links if publishing a date-based archive -->
9</mt:ignore>
10<MTIf name="datebased_archive">
11    <MTArchivePrevious><link rel="prev" href="<$MTArchiveLink$>" title="<$MTArchiveTitle encode_html="1"$>" /></MTArchivePrevious>
12    <MTArchiveNext><link rel="next" href="<$MTArchiveLink$>" title="<$MTArchiveTitle encode_html="1"$>" /></MTArchiveNext>
13</MTIf>
14</head>
15<body class="mt-archive-listing mt-<MTVar name="archive_class"> <$MTVar name="page_layout"$>">
16    <div id="container">
17        <div id="container-inner">
18
19
20            <$mt:include module="<__trans phrase="Banner Header">"$>
21
22
23            <div id="content">
24                <div id="content-inner">
25
26
27                    <div id="alpha">
28                        <div id="alpha-inner">
29<MTIf name="datebased_archive">
30                            <mt:ignore><!-- Title for category-monthly entry listings --></mt:ignore>
31                            <h1 id="page-title" class="archive-title"><__trans phrase="[_1] Archives" params="<$MTArchiveTitle$>"></h1>
32<MTElse>
33                            <mt:ignore><!-- Title for category entry listings --></mt:ignore>
34                            <h1 id="page-title" class="archive-title"><__trans phrase="Recently in <em>[_1]</em> Category" params="<$MTArchiveTitle$>"></h1>
35</MTIf>
36
37
38<mt:ignore><!-- Limit number of entries to the number set in Blog Entry Settings --></mt:ignore>
39<MTUnless name="datebased_archive"><$mt:setvar name="limit" value="auto"$></MTUnless>
40<MTEntries limit="$limit">
41                            <mt:ignore><!-- Use the Entry Summary module for each entry published on this page --></mt:ignore>
42                            <$mt:include module="Entry Summary"$>
43</MTEntries>
44
45
46                            <div class="content-nav">
47                                <MTArchivePrevious><a href="<$MTArchiveLink$>">&laquo; <$MTArchiveTitle$></a> |</MTArchivePrevious>
48                                <a href="<$MTLink template="main_index"$>"><__trans phrase="Main Index"></a> |
49                                <a href="<$MTLink template="archive_index"$>"><__trans phrase="Archives"></a>
50                                <MTArchiveNext>| <a href="<$MTArchiveLink$>"><$MTArchiveTitle$> &raquo;</a></MTArchiveNext>
51                            </div>
52
53
54                        </div>
55                    </div>
56
57
58                    <$MTInclude module="<__trans phrase="Sidebar">"$>
59
60
61                </div>
62            </div>
63
64
65            <$mt:include module="<__trans phrase="Banner Footer">"$>
66
67
68        </div>
69    </div>
70</body>
71</html>
Note: See TracBrowser for help on using the browser.