Changeset 2603
- Timestamp:
- 06/19/08 01:10:24 (20 months ago)
- Location:
- branches/release-40/default_templates
- Files:
-
- 36 modified
-
archive_index.mtml (modified) (4 diffs)
-
archive_widgets_group.mtml (modified) (1 diff)
-
banner_footer.mtml (modified) (1 diff)
-
banner_header.mtml (modified) (1 diff)
-
category_entry_listing.mtml (modified) (4 diffs)
-
comment_preview.mtml (modified) (6 diffs)
-
comment_response.mtml (modified) (3 diffs)
-
comment_throttle.mtml (modified) (1 diff)
-
commenter_confirm.mtml (modified) (1 diff)
-
commenter_notify.mtml (modified) (1 diff)
-
comments.mtml (modified) (3 diffs)
-
dynamic_error.mtml (modified) (4 diffs)
-
entry.mtml (modified) (5 diffs)
-
entry_summary.mtml (modified) (1 diff)
-
feed_recent.mtml (modified) (1 diff)
-
footer-email.mtml (modified) (1 diff)
-
html_head.mtml (modified) (1 diff)
-
javascript.mtml (modified) (2 diffs)
-
main_index.mtml (modified) (4 diffs)
-
main_index_widgets_group.mtml (modified) (1 diff)
-
monthly_entry_listing.mtml (modified) (4 diffs)
-
new-comment.mtml (modified) (1 diff)
-
new-ping.mtml (modified) (1 diff)
-
notify-entry.mtml (modified) (1 diff)
-
page.mtml (modified) (3 diffs)
-
popup_image.mtml (modified) (1 diff)
-
recover-password.mtml (modified) (1 diff)
-
rsd.mtml (modified) (1 diff)
-
search.mtml (modified) (3 diffs)
-
search_results.mtml (modified) (6 diffs)
-
sidebar.mtml (modified) (5 diffs)
-
styles.mtml (modified) (1 diff)
-
syndication.mtml (modified) (1 diff)
-
tag_cloud.mtml (modified) (1 diff)
-
trackbacks.mtml (modified) (1 diff)
-
verify-subscribe.mtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-40/default_templates/archive_index.mtml
r2101 r2603 3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 4 4 <head> 5 <$mt: include module="<__trans phrase="HTML Head">"$>6 <title><$ MTBlogName encode_html="1"$>: <__trans phrase="Archives"></title>5 <$mt:Include module="<__trans phrase="HTML Head">"$> 6 <title><$mt:BlogName encode_html="1"$>: <__trans phrase="Archives"></title> 7 7 </head> 8 <body id="<$mt:BlogTemplateSetID$>" class="mt-archive-index <$ MTVar name="page_layout"$>">8 <body id="<$mt:BlogTemplateSetID$>" class="mt-archive-index <$mt:Var name="page_layout"$>"> 9 9 <div id="container"> 10 10 <div id="container-inner"> 11 11 12 12 13 <$mt: include module="<__trans phrase="Banner Header">"$>13 <$mt:Include module="<__trans phrase="Banner Header">"$> 14 14 15 15 … … 23 23 <h1 id="page-title" class="archive-title"><__trans phrase="Archives"></h1> 24 24 25 <mt: ignore>25 <mt:Ignore> 26 26 <!-- List of monthly archives, if monthly archives are enabled --> 27 </mt: ignore>28 < MTIfArchiveTypeEnabled archive_type="Monthly">27 </mt:Ignore> 28 <mt:IfArchiveTypeEnabled archive_type="Monthly"> 29 29 <div class="archive-monthly archive-date-based archive"> 30 < MTArchiveList archive_type="Monthly">31 < MTArchiveListHeader>30 <mt:ArchiveList archive_type="Monthly"> 31 <mt:ArchiveListHeader> 32 32 <h2 class="archive-header"><__trans phrase="Monthly Archives"></h2> 33 33 <div class="archive-content"> 34 34 <ul class="archive-list"> 35 </ MTArchiveListHeader>36 <li class="archive-list-item"><a href="<$ MTArchiveLink$>"><$MTArchiveTitle$></a></li>37 < MTArchiveListFooter>35 </mt:ArchiveListHeader> 36 <li class="archive-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$></a></li> 37 <mt:ArchiveListFooter> 38 38 </ul> 39 39 </div> 40 </ MTArchiveListFooter>41 </ MTArchiveList>40 </mt:ArchiveListFooter> 41 </mt:ArchiveList> 42 42 </div> 43 </ MTIfArchiveTypeEnabled>43 </mt:IfArchiveTypeEnabled> 44 44 45 45 46 <mt: ignore>46 <mt:Ignore> 47 47 <!-- List of category archives, if category archives are enabled --> 48 </mt: ignore>49 < MTIfArchiveTypeEnabled archive_type="Category">48 </mt:Ignore> 49 <mt:IfArchiveTypeEnabled archive_type="Category"> 50 50 <div class="archive-category archive"> 51 51 <h2 class="archive-header"><__trans phrase="Categories"></h2> 52 52 <div class="archive-content"> 53 < MTTopLevelCategories>54 < MTSubCatIsFirst>53 <mt:TopLevelCategories> 54 <mt:SubCatIsFirst> 55 55 <ul class="archive-list"> 56 </ MTSubCatIsFirst>57 < MTIfNonZero tag="MTCategoryCount">58 <li class="archive-list-item"><a href="<$ MTCategoryArchiveLink$>" title="<$MTCategoryDescription$>"><$MTCategoryLabel$></a>59 < MTElse>60 <li class="archive-list-item"><$ MTCategoryLabel$>61 </ MTIfNonZero>62 < MTSubCatsRecurse>56 </mt:SubCatIsFirst> 57 <mt:IfNonZero tag="MTCategoryCount"> 58 <li class="archive-list-item"><a href="<$mt:CategoryArchiveLink$>" title="<$mt:CategoryDescription$>"><$mt:CategoryLabel$></a> 59 <mt:Else> 60 <li class="archive-list-item"><$mt:CategoryLabel$> 61 </mt:IfNonZero> 62 <$mt:SubCatsRecurse$> 63 63 </li> 64 < MTSubCatIsLast>64 <mt:SubCatIsLast> 65 65 </ul> 66 </ MTSubCatIsLast>67 </ MTTopLevelCategories>66 </mt:SubCatIsLast> 67 </mt:TopLevelCategories> 68 68 </div> 69 69 </div> 70 </ MTIfArchiveTypeEnabled>70 </mt:IfArchiveTypeEnabled> 71 71 72 72 73 <mt: ignore>73 <mt:Ignore> 74 74 <!-- List of author archives, if category author are enabled --> 75 < MTIfArchiveTypeEnabled archive_type="Author">75 <mt:IfArchiveTypeEnabled archive_type="Author"> 76 76 <div class="archive-author archive"> 77 < MTArchiveList archive_type="Author">78 < MTArchiveListHeader>77 <mt:ArchiveList archive_type="Author"> 78 <mt:ArchiveListHeader> 79 79 <h2 class="archive-header"><__trans phrase="Author Archives"></h2> 80 80 <div class="archive-content"> 81 81 <ul class="archive-list"> 82 </ MTArchiveListHeader>83 <li class="archive-list-item"><a href="<$ MTArchiveLink$>"><$MTArchiveTitle$></a></li>84 < MTArchiveListFooter>82 </mt:ArchiveListHeader> 83 <li class="archive-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$></a></li> 84 <mt:ArchiveListFooter> 85 85 </ul> 86 86 </div> 87 </ MTArchiveListFooter>88 </ MTArchiveList>87 </mt:ArchiveListFooter> 88 </mt:ArchiveList> 89 89 </div> 90 </ MTIfArchiveTypeEnabled>91 </mt: ignore>90 </mt:IfArchiveTypeEnabled> 91 </mt:Ignore> 92 92 93 93 94 <mt: ignore>94 <mt:Ignore> 95 95 <!-- List of category archives by month, if category archives are enabled --> 96 < MTIfArchiveTypeEnabled archive_type="Category-Monthly">96 <mt:IfArchiveTypeEnabled archive_type="Category-Monthly"> 97 97 <div class="archive-category-monthly archive"> 98 < MTArchiveList archive_type="Category-Monthly">99 < MTArchiveListHeader>98 <mt:ArchiveList archive_type="Category-Monthly"> 99 <mt:ArchiveListHeader> 100 100 <h2 class="archive-header"><__trans phrase="Category Monthly Archives"></h2> 101 101 <div class="archive-content"> 102 102 <ul class="archive-list"> 103 </ MTArchiveListHeader>104 <li class="archive-list-item"><a href="<$ MTArchiveLink$>"><$MTArchiveTitle$></a></li>105 < MTArchiveListFooter>103 </mt:ArchiveListHeader> 104 <li class="archive-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$></a></li> 105 <mt:ArchiveListFooter> 106 106 </ul> 107 107 </div> 108 </ MTArchiveListFooter>109 </ MTArchiveList>108 </mt:ArchiveListFooter> 109 </mt:ArchiveList> 110 110 </div> 111 </ MTIfArchiveTypeEnabled>112 </mt: ignore>111 </mt:IfArchiveTypeEnabled> 112 </mt:Ignore> 113 113 114 114 115 <mt: ignore>115 <mt:Ignore> 116 116 <!-- List of author archives, if category archives are enabled --> 117 < MTIfArchiveTypeEnabled archive_type="Author-Monthly">117 <mt:IfArchiveTypeEnabled archive_type="Author-Monthly"> 118 118 <div class="archive-author-monthly archive"> 119 < MTArchiveList archive_type="Author-Monthly">120 < MTArchiveListHeader>119 <mt:ArchiveList archive_type="Author-Monthly"> 120 <mt:ArchiveListHeader> 121 121 <h2 class="archive-header"><__trans phrase="Author Monthly Archives"></h2> 122 122 <div class="archive-content"> 123 123 <ul class="archive-list"> 124 </ MTArchiveListHeader>125 <li class="archive-list-item"><a href="<$ MTArchiveLink$>"><$MTArchiveTitle$></a></li>126 < MTArchiveListFooter>124 </mt:ArchiveListHeader> 125 <li class="archive-list-item"><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$></a></li> 126 <mt:ArchiveListFooter> 127 127 </ul> 128 128 </div> 129 </ MTArchiveListFooter>130 </ MTArchiveList>129 </mt:ArchiveListFooter> 130 </mt:ArchiveList> 131 131 </div> 132 </ MTIfArchiveTypeEnabled>133 </mt: ignore>132 </mt:IfArchiveTypeEnabled> 133 </mt:Ignore> 134 134 135 135 136 <mt: ignore>136 <mt:Ignore> 137 137 <!-- List of entry archives, if entry archives are enabled --> 138 < MTIfArchiveTypeEnabled archive_type="Individual">138 <mt:IfArchiveTypeEnabled archive_type="Individual"> 139 139 <div class="archive-individual archive-date-based archive"> 140 < MTArchiveList archive_type="Individual">141 < MTArchiveListHeader>140 <mt:ArchiveList archive_type="Individual"> 141 <mt:ArchiveListHeader> 142 142 <div class="archive-content"> 143 143 <ul class="archive-list"> 144 </ MTArchiveListHeader>145 <li class="archive-list-item"><$ MTArchiveDate format="%Y.%m.%d"$>: <a href="<$MTArchiveLink$>"><$MTArchiveTitle$></a></li>146 < MTArchiveListFooter>144 </mt:ArchiveListHeader> 145 <li class="archive-list-item"><$mt:ArchiveDate format="%Y.%m.%d"$>: <a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$></a></li> 146 <mt:ArchiveListFooter> 147 147 </ul> 148 148 </div> 149 </ MTArchiveListFooter>150 </ MTArchiveList>149 </mt:ArchiveListFooter> 150 </mt:ArchiveList> 151 151 </div> 152 </ MTIfArchiveTypeEnabled>153 </mt: ignore>152 </mt:IfArchiveTypeEnabled> 153 </mt:Ignore> 154 154 155 155 … … 158 158 159 159 160 <$ MTInclude module="<__trans phrase="Sidebar">"$>160 <$mt:Include module="<__trans phrase="Sidebar">"$> 161 161 162 162 … … 165 165 166 166 167 <$mt: include module="<__trans phrase="Banner Footer">"$>167 <$mt:Include module="<__trans phrase="Banner Footer">"$> 168 168 169 169 -
branches/release-40/default_templates/archive_widgets_group.mtml
r2052 r2603 2 2 <__trans phrase="This is a custom set of widgets that are conditioned to serve different content based upon what type of archive it is included. More info: [_1]" params="http://www.movabletype.org/documentation/designer/widget-sets.html"> 3 3 </mt:Ignore> 4 <mt: if name="category_archive">4 <mt:If name="category_archive"> 5 5 <mt:IfArchiveTypeEnabled archive_type="Category-Monthly"> 6 <$mt: include widget="<__trans phrase="Current Category Monthly Archives">"$>6 <$mt:Include widget="<__trans phrase="Current Category Monthly Archives">"$> 7 7 </mt:IfArchiveTypeEnabled> 8 </mt: if>8 </mt:If> 9 9 <mt:IfArchiveTypeEnabled archive_type="Category"> 10 <$mt: include widget="<__trans phrase="Category Archives">"$>10 <$mt:Include widget="<__trans phrase="Category Archives">"$> 11 11 </mt:IfArchiveTypeEnabled> 12 12 <mt:IfArchiveTypeEnabled archive_type="Monthly"> 13 <$mt: include widget="<__trans phrase="Monthly Archives">"$>13 <$mt:Include widget="<__trans phrase="Monthly Archives">"$> 14 14 </mt:IfArchiveTypeEnabled> -
branches/release-40/default_templates/banner_footer.mtml
r1851 r2603 7 7 </div> 8 8 </div> 9 < MTBlogIfCCLicense>9 <mt:BlogIfCCLicense> 10 10 <div class="widget-creative-commons widget"> 11 11 <div class="widget-content"> 12 <__trans phrase="This blog is licensed under a <a href="[_1]">Creative Commons License</a>." params="<$ MTBlogCCLicenseURL$>">12 <__trans phrase="This blog is licensed under a <a href="[_1]">Creative Commons License</a>." params="<$mt:BlogCCLicenseURL$>"> 13 13 </div> 14 14 </div> 15 </ MTBlogIfCCLicense>15 </mt:BlogIfCCLicense> 16 16 </div> 17 17 </div> -
branches/release-40/default_templates/banner_header.mtml
r1851 r2603 2 2 <div id="header-inner"> 3 3 <div id="header-content"> 4 <mt: ignore><!-- Use h1 and h2 html tags on the main index of the blog as the title, use divs on all other pages where there are page titles. --></mt:ignore>5 < MTIf name="main_index">6 <h1 id="header-name"><a href="<$ MTBlogURL$>" accesskey="1"><$MTBlogName encode_html="1"$></a></h1>7 <h2 id="header-description"><$ MTBlogDescription$></h2>8 < MTElse>9 <div id="header-name"><a href="<$ MTBlogURL$>" accesskey="1"><$MTBlogName encode_html="1"$></a></div>10 <div id="header-description"><$ MTBlogDescription$></div>11 </ MTIf>4 <mt:Ignore><!-- Use h1 and h2 html tags on the main index of the blog as the title, use divs on all other pages where there are page titles. --></mt:Ignore> 5 <mt:If name="main_index"> 6 <h1 id="header-name"><a href="<$mt:BlogURL$>" accesskey="1"><$mt:BlogName encode_html="1"$></a></h1> 7 <h2 id="header-description"><$mt:BlogDescription$></h2> 8 <mt:Else> 9 <div id="header-name"><a href="<$mt:BlogURL$>" accesskey="1"><$mt:BlogName encode_html="1"$></a></div> 10 <div id="header-description"><$mt:BlogDescription$></div> 11 </mt:If> 12 12 </div> 13 13 </div> -
branches/release-40/default_templates/category_entry_listing.mtml
r2101 r2603 3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 4 4 <head> 5 <$mt: include module="<__trans phrase="HTML Head">"$>6 <title><$ MTBlogName encode_html="1"$>: <__trans phrase="[_1] Archives" params="<$MTArchiveTitle$>"></title>7 <mt: ignore>5 <$mt:Include module="<__trans phrase="HTML Head">"$> 6 <title><$mt:BlogName encode_html="1"$>: <__trans phrase="[_1] Archives" params="<$mt:ArchiveTitle$>"></title> 7 <mt:Ignore> 8 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>9 </mt:Ignore> 10 <mt:If name="datebased_archive"> 11 <mt:ArchivePrevious><link rel="prev" href="<$mt:ArchiveLink$>" title="<$mt:ArchiveTitle encode_html="1"$>" /></mt:ArchivePrevious> 12 <mt:ArchiveNext><link rel="next" href="<$mt:ArchiveLink$>" title="<$mt:ArchiveTitle encode_html="1"$>" /></mt:ArchiveNext> 13 </mt:If> 14 14 </head> 15 <body id="<$mt:BlogTemplateSetID$>" class="mt-archive-listing mt-< MTVar name="archive_class"> <$MTVar name="page_layout"$>">15 <body id="<$mt:BlogTemplateSetID$>" class="mt-archive-listing mt-<$mt:Var name="archive_class"$> <$mt:Var name="page_layout"$>"> 16 16 <div id="container"> 17 17 <div id="container-inner"> 18 18 19 19 20 <$mt: include module="<__trans phrase="Banner Header">"$>20 <$mt:Include module="<__trans phrase="Banner Header">"$> 21 21 22 22 … … 27 27 <div id="alpha"> 28 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>29 <mt:If 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="<$mt:ArchiveTitle$>"></h1> 32 <mt:Else> 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="<$mt:ArchiveTitle$>"></h1> 35 </mt:If> 36 36 37 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="<__trans phrase="Entry Summary">"$>43 </ MTEntries>38 <mt:Ignore><!-- Limit number of entries to the number set in Blog Entry Settings --></mt:Ignore> 39 <mt:Unless name="datebased_archive"><$mt:SetVar name="limit" value="auto"$></mt:Unless> 40 <mt:Entries limit="$limit"> 41 <mt:Ignore><!-- Use the Entry Summary module for each entry published on this page --></mt:Ignore> 42 <$mt:Include module="<__trans phrase="Entry Summary">"$> 43 </mt:Entries> 44 44 45 45 46 46 <div class="content-nav"> 47 < MTArchivePrevious><a href="<$MTArchiveLink$>">« <$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$> »</a></MTArchiveNext>47 <mt:ArchivePrevious><a href="<$mt:ArchiveLink$>">« <$mt:ArchiveTitle$></a> |</mt:ArchivePrevious> 48 <a href="<$mt:Link template="main_index"$>"><__trans phrase="Main Index"></a> | 49 <a href="<$mt:Link template="archive_index"$>"><__trans phrase="Archives"></a> 50 <mt:ArchiveNext>| <a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> »</a></mt:ArchiveNext> 51 51 </div> 52 52 … … 56 56 57 57 58 <$ MTInclude module="<__trans phrase="Sidebar">"$>58 <$mt:Include module="<__trans phrase="Sidebar">"$> 59 59 60 60 … … 63 63 64 64 65 <$mt: include module="<__trans phrase="Banner Footer">"$>65 <$mt:Include module="<__trans phrase="Banner Footer">"$> 66 66 67 67 -
branches/release-40/default_templates/comment_preview.mtml
r2394 r2603 5 5 <script type="text/javascript"> 6 6 /* <![CDATA[ */ 7 var user = <$ MTUserSessionState$>;7 var user = <$mt:UserSessionState$>; 8 8 var is_preview = true; 9 9 /* ]]> */ 10 10 </script> 11 <$mt: include module="<__trans phrase="HTML Head">"$>12 <title><$ MTBlogName encode_html="1"$>: <__trans phrase="Previewing your Comment"></title>11 <$mt:Include module="<__trans phrase="HTML Head">"$> 12 <title><$mt:BlogName encode_html="1"$>: <__trans phrase="Previewing your Comment"></title> 13 13 </head> 14 <body id="<$mt:BlogTemplateSetID$>" class="mt-comment-preview <$ MTVar name="page_layout"$>" onload="mtEntryOnLoad()">14 <body id="<$mt:BlogTemplateSetID$>" class="mt-comment-preview <$mt:Var name="page_layout"$>" onload="mtEntryOnLoad()"> 15 15 <div id="container"> 16 16 <div id="container-inner"> 17 17 18 18 19 <$mt: include module="<__trans phrase="Banner Header">"$>19 <$mt:Include module="<__trans phrase="Banner Header">"$> 20 20 21 21 … … 28 28 29 29 30 <h1 id="page-title"><$ MTVar name="page_title"$></h1>30 <h1 id="page-title"><$mt:Var name="page_title"$></h1> 31 31 32 32 33 <mt: ignore><!-- Comment Preview --></mt:ignore>34 <div class="comment" id="comment-<$ MTCommentID$>">33 <mt:Ignore><!-- Comment Preview --></mt:Ignore> 34 <div class="comment" id="comment-<$mt:CommentID$>"> 35 35 <div class="inner"> 36 36 <div class="comment-header"> 37 37 <div class="asset-meta"> 38 38 <span class="byline"> 39 <$ MTCommentAuthorIdentity$>39 <$mt:CommentAuthorIdentity$> 40 40 <mt:IfCommentParent> 41 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<span class="vcard author"><$ MTCommentAuthorLink$></span>%%<mt:CommentParent><$mt:CommentLink$></mt:CommentParent>%%<mt:CommentParent><$MTCommentAuthor$></mt:CommentParent>">42 <mt: else>43 <span class="vcard author"><$ MTCommentAuthorLink$></span>41 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<span class="vcard author"><$mt:CommentAuthorLink$></span>%%<mt:CommentParent><$mt:CommentLink$></mt:CommentParent>%%<mt:CommentParent><$mt:CommentAuthor$></mt:CommentParent>"> 42 <mt:Else> 43 <span class="vcard author"><$mt:CommentAuthorLink$></span> 44 44 </mt:IfCommentParent> 45 | <a href="<$mt:CommentLink$>"><abbr class="published" title="<$ MTCommentDate format_name="iso8601"$>"><$MTCommentDate$></abbr></a>45 | <a href="<$mt:CommentLink$>"><abbr class="published" title="<$mt:CommentDate format_name="iso8601"$>"><$mt:CommentDate$></abbr></a> 46 46 </span> 47 47 </div> 48 48 </div> 49 49 <div class="comment-content"> 50 <$ MTCommentBody$>50 <$mt:CommentBody$> 51 51 </div> 52 52 </div> … … 54 54 55 55 56 <mt: ignore><!-- Comment Form --></mt:ignore>56 <mt:Ignore><!-- Comment Form --></mt:Ignore> 57 57 <div class="comments-open" id="comments-open"> 58 58 <h2 class="comments-open-header"><__trans phrase="Leave a comment"></h2> 59 59 <div class="comments-open-content"> 60 60 <div id="comment-greeting"></div> 61 <form method="post" action="<$ MTCGIPath$><$MTCommentScript$>" name="comments_form" id="comments-form" onsubmit="return mtCommentOnSubmit(this)">61 <form method="post" action="<$mt:CGIPath$><$mt:CommentScript$>" name="comments_form" id="comments-form" onsubmit="return mtCommentOnSubmit(this)"> 62 62 <input type="hidden" name="static" value="1" /> 63 63 <input type="hidden" name="armor" value="1" /> 64 64 <input type="hidden" name="preview" value="" /> 65 <input type="hidden" name="entry_id" value="<$ MTEntryID$>" />66 <input type="hidden" name="__lang" value="<$ MTBlogLanguage$>" />65 <input type="hidden" name="entry_id" value="<$mt:EntryID$>" /> 66 <input type="hidden" name="__lang" value="<$mt:BlogLanguage$>" /> 67 67 <mt:IfCommentParent> 68 <input type="hidden" name="parent_id" value="<$mt:CommentParentI d$>" id="comment-parent-id">68 <input type="hidden" name="parent_id" value="<$mt:CommentParentID$>" id="comment-parent-id"> 69 69 </mt:IfCommentParent> 70 70 <div id="comments-open-data"> 71 71 <div id="comment-form-name"> 72 72 <label for="comment-author"><__trans phrase="Name"></label> 73 <input id="comment-author" name="author" size="30" value="<$ MTCommentAuthor encode_html="1"$>" onfocus="mtShowCaptcha()" />73 <input id="comment-author" name="author" size="30" value="<$mt:CommentAuthor encode_html="1"$>" onfocus="mtShowCaptcha()" /> 74 74 </div> 75 75 <div id="comment-form-email"> 76 76 <label for="comment-email"><__trans phrase="Email Address"></label> 77 <input id="comment-email" name="email" size="30" value="<$ MTCommentEmail encode_html="1"$>" onfocus="mtShowCaptcha()" />77 <input id="comment-email" name="email" size="30" value="<$mt:CommentEmail encode_html="1"$>" onfocus="mtShowCaptcha()" /> 78 78 </div> 79 79 <div id="comment-form-url"> 80 80 <label for="comment-url"><__trans phrase="URL"></label> 81 <input id="comment-url" name="url" size="30" value="<$ MTCommentURL encode_html="1"$>" onfocus="mtShowCaptcha()" />81 <input id="comment-url" name="url" size="30" value="<$mt:CommentURL encode_html="1"$>" onfocus="mtShowCaptcha()" /> 82 82 </div> 83 83 </div> 84 84 <mt:IfCommentParent> 85 85 <div id="comment-form-reply"> 86 <input type="checkbox" id="comment-reply" name="comment_reply" value="<$mt:CommentParentI d$>" checked="checked" onclick="mtSetCommentParentID()" />87 <label for="comment-reply" id="comment-reply-label"><__trans phrase="Replying to comment from [_1]" params="<mt:CommentParent><$ MTCommentAuthor$></mt:CommentParent>"></label>86 <input type="checkbox" id="comment-reply" name="comment_reply" value="<$mt:CommentParentID$>" checked="checked" onclick="mtSetCommentParentID()" /> 87 <label for="comment-reply" id="comment-reply-label"><__trans phrase="Replying to comment from [_1]" params="<mt:CommentParent><$mt:CommentAuthor$></mt:CommentParent>"></label> 88 88 </div> 89 89 </mt:IfCommentParent> 90 90 <div id="comments-open-text"> 91 <label for="comment-text"><__trans phrase="Comments"> < MTIfAllowCommentHTML><__trans phrase="(You may use HTML tags for style)"></MTIfAllowCommentHTML></label>92 <textarea id="comment-text" name="text" rows="15" cols="50" onfocus="mtShowCaptcha()"><$ MTCommentBody autolink="0" sanitize="0" convert_breaks="0" encode_html="1"$></textarea>91 <label for="comment-text"><__trans phrase="Comments"> <mt:IfAllowCommentHTML><__trans phrase="(You may use HTML tags for style)"></mt:IfAllowCommentHTML></label> 92 <textarea id="comment-text" name="text" rows="15" cols="50" onfocus="mtShowCaptcha()"><$mt:CommentBody autolink="0" sanitize="0" convert_breaks="0" encode_html="1"$></textarea> 93 93 </div> 94 94 <div id="comments-open-captcha"></div> … … 96 96 <input type="submit" accesskey="v" name="preview_button" id="comment-preview" value="<__trans phrase="Preview">" onclick="this.form.preview.value='1';" /> 97 97 <input type="submit" accesskey="s" name="post" id="comment-submit" value="<__trans phrase="Submit">" /> 98 <input type="button" name="cancel" id="comment-cancel" value="<__trans phrase="Cancel">" onclick="window.location='<$ MTEntryPermalink$>'" />98 <input type="button" name="cancel" id="comment-cancel" value="<__trans phrase="Cancel">" onclick="window.location='<$mt:EntryPermalink$>'" /> 99 99 </div> 100 100 </form> … … 105 105 106 106 107 <$ MTInclude module="<__trans phrase="Sidebar">"$>107 <$mt:Include module="<__trans phrase="Sidebar">"$> 108 108 109 109 … … 112 112 113 113 114 <$mt: include module="<__trans phrase="Banner Footer">"$>114 <$mt:Include module="<__trans phrase="Banner Footer">"$> 115 115 116 116 -
branches/release-40/default_templates/comment_response.mtml
r2393 r2603 5 5 6 6 7 < MTIf name="comment_confirmation">8 <mt: ignore><!-- Success message when comment has been submitted --></mt:ignore>9 < MTSetVar name="page_title" value="<__trans phrase="Confirmation...">">10 < MTSetVar name="message" value="<p><__trans phrase="Your comment has been submitted!"></p>">11 < MTElse name="comment_pending">12 <mt: ignore><!-- Pending message when comment is being held for review --></mt:ignore>13 < MTSetVar name="page_title" value="<__trans phrase="Thank you for commenting.">">14 < MTSetVar name="message" value="<p><__trans phrase="Your comment has been received and held for approval by the blog owner."></p>">15 < MTElse name="comment_error">16 <mt: ignore><!-- Error message when comment submission fails --></mt:ignore>17 < MTSetVar name="page_title" value="<__trans phrase="Comment Submission Error">">18 < MTSetVarBlock name="message"><p><__trans phrase="Your comment submission failed for the following reasons: [_1]" params="<$MTErrorMessage$>"></p></MTSetVarBlock>19 </ MTIf>7 <mt:If name="comment_confirmation"> 8 <mt:Ignore><!-- Success message when comment has been submitted --></mt:Ignore> 9 <$mt:SetVar name="page_title" value="<__trans phrase="Confirmation...">"$> 10 <$mt:SetVar name="message" value="<p><__trans phrase="Your comment has been submitted!"></p>"$> 11 <mt:Else name="comment_pending"> 12 <mt:Ignore><!-- Pending message when comment is being held for review --></mt:Ignore> 13 <$mt:SetVar name="page_title" value="<__trans phrase="Thank you for commenting.">"$> 14 <$mt:SetVar name="message" value="<p><__trans phrase="Your comment has been received and held for approval by the blog owner."></p>"$> 15 <mt:Else name="comment_error"> 16 <mt:Ignore><!-- Error message when comment submission fails --></mt:Ignore> 17 <$mt:SetVar name="page_title" value="<__trans phrase="Comment Submission Error">"$> 18 <mt:SetVarBlock name="message"><p><__trans phrase="Your comment submission failed for the following reasons: [_1]" params="<$mt:ErrorMessage$>"></p></mt:SetVarBlock> 19 </mt:If> 20 20 21 21 22 <$mt: include module="<__trans phrase="HTML Head">"$>23 <title><$ MTBlogName encode_html="1"$>: <$MTVar name="page_title"$></title>22 <$mt:Include module="<__trans phrase="HTML Head">"$> 23 <title><$mt:BlogName encode_html="1"$>: <$mt:Var name="page_title"$></title> 24 24 </head> 25 <body id="<$mt:BlogTemplateSetID$>" class="<$mt: var name="body_class"$> <$MTVar name="page_layout"$>">25 <body id="<$mt:BlogTemplateSetID$>" class="<$mt:Var name="body_class"$> <$mt:Var name="page_layout"$>"> 26 26 <div id="container"> 27 27 <div id="container-inner"> 28 28 29 29 30 <$mt: include module="<__trans phrase="Banner Header">"$>30 <$mt:Include module="<__trans phrase="Banner Header">"$> 31 31 32 32 … … 37 37 <div id="alpha"> 38 38 <div id="alpha-inner"> 39 <h1 id="page-title"><$ MTVar name="page_title"$></h1>40 <$ MTVar name="message"$>41 <p><__trans phrase="Return to the <a href="[_1]">original entry</a>." params="<$ MTEntryLink$>"></p>39 <h1 id="page-title"><$mt:Var name="page_title"$></h1> 40 <$mt:Var name="message"$> 41 <p><__trans phrase="Return to the <a href="[_1]">original entry</a>." params="<$mt:EntryLink$>"></p> 42 42 </div> 43 43 </div> 44 44 45 45 46 <$ MTInclude module="<__trans phrase="Sidebar">"$>46 <$mt:Include module="<__trans phrase="Sidebar">"$> 47 47 48 48 … … 51 51 52 52 53 <$mt: include module="<__trans phrase="Banner Footer">"$>53 <$mt:Include module="<__trans phrase="Banner Footer">"$> 54 54 55 55 -
branches/release-40/default_templates/comment_throttle.mtml
r1103 r2603 1 <mt: setvarblock name="message"><__trans phrase="If this was a mistake, you can unblock the IP address and allow the visitor to add it again by logging in to your Movable Type installation, going to Blog Config - IP Banning, and deleting the IP address [_1] from the list of banned addresses." params="<mt:var name="throttled_ip">"></mt:setvarblock>2 <__trans phrase="A visitor to your blog [_1] has automatically been banned by adding more than the allowed number of comments in the last [_2] seconds." params="<$ MTBlogName$>%%<mt:var name="throttle_seconds">">1 <mt:SetVarBlock name="message"><__trans phrase="If this was a mistake, you can unblock the IP address and allow the visitor to add it again by logging in to your Movable Type installation, going to Blog Config - IP Banning, and deleting the IP address [_1] from the list of banned addresses." params="<$mt:Var name="throttled_ip"$>"></mt:SetVarBlock> 2 <__trans phrase="A visitor to your blog [_1] has automatically been banned by adding more than the allowed number of comments in the last [_2] seconds." params="<$mt:BlogName$>%%<$mt:Var name="throttle_seconds"$>"> 3 3 4 4 <__trans phrase="This has been done to prevent a malicious script from overwhelming your weblog with comments. The banned IP address is"> 5 5 6 < mt:var name="throttled_ip">6 <$mt:Var name="throttled_ip"$> 7 7 8 < mt:var name="message">8 <$mt:Var name="message"$> -
branches/release-40/default_templates/commenter_confirm.mtml
r1102 r2603 1 <__trans phrase="Thank you registering for an account to comment on [_1]." params="<$ MTBlogName$>">1 <__trans phrase="Thank you registering for an account to comment on [_1]." params="<$mt:BlogName$>"> 2 2 3 <__trans phrase="For your own security and to prevent fraud, we ask that you please confirm your account and email address before continuing. Once confirmed you will immediately be allowed to comment on [_1]." params="<$ MTBlogName$>">3 <__trans phrase="For your own security and to prevent fraud, we ask that you please confirm your account and email address before continuing. Once confirmed you will immediately be allowed to comment on [_1]." params="<$mt:BlogName$>"> 4 4 5 5 <__trans phrase="To confirm your account, please click on or cut and paste the following URL into a web browser:"> 6 6 7 < mt:var name="confirm_url">7 <$mt:Var name="confirm_url"$> 8 8 9 <__trans phrase="If you did not make this request, or you don't want to register for an account to comment on [_1], then no further action is required." params="<$ MTBlogName$>">9 <__trans phrase="If you did not make this request, or you don't want to register for an account to comment on [_1], then no further action is required." params="<$mt:BlogName$>"> 10 10 11 11 <__trans phrase="Thank you very much for your understanding."> 12 12 13 13 <__trans phrase="Sincerely,"> 14 <mt: ifnonempty tag="AuthorDisplayName"><$MTAuthorDisplayName$><mt:else>Movable Type</mt:ifnonempty>14 <mt:IfNonEmpty tag="AuthorDisplayName"><$mt:AuthorDisplayName$><mt:Else>Movable Type</mt:IfNonEmpty> 15 15 16 < mt:include module="<__trans phrase="Mail Footer">">16 <$mt:Include module="<__trans phrase="Mail Footer">"$> -
branches/release-40/default_templates/commenter_notify.mtml
r1102 r2603 1 <__trans phrase="This email is to notify you that a new user has successfully registered on the blog '[_1]'. Listed below you will find some useful information about this new user." params="<$ MTBlogName$>">1 <__trans phrase="This email is to notify you that a new user has successfully registered on the blog '[_1]'. Listed below you will find some useful information about this new user." params="<$mt:BlogName$>"> 2 2 3 3 <__trans phrase="New User Information:"> 4 <__trans phrase="Username: [_1]" params="<$ MTCommenterUsername$>">5 <__trans phrase="Full Name: [_1]" params="<$ MTCommenterName$>">6 <__trans phrase="Email: [_1]" params="<$ MTCommenterEmail$>">4 <__trans phrase="Username: [_1]" params="<$mt:CommenterUsername$>"> 5 <__trans phrase="Full Name: [_1]" params="<$mt:CommenterName$>"> 6 <__trans phrase="Email: [_1]" params="<$mt:CommenterEmail$>"> 7 7 8 8 <__trans phrase="To view or edit this user, please click on or cut and paste the following URL into a web browser:"> 9 < mt:var name="profile_url">9 <$mt:Var name="profile_url"$> 10 10 11 < mt:include module="<__trans phrase="Mail Footer">">11 <$mt:Include module="<__trans phrase="Mail Footer">"$> -
branches/release-40/default_templates/comments.mtml
r2394 r2603 1 <mt: ignore>1 <mt:Ignore> 2 2 <!-- Display comments for the entry/page or commenting form if entry/page is accepting comments --> 3 </mt: ignore>4 < MTIfCommentsActive>3 </mt:Ignore> 4 <mt:IfCommentsActive> 5 5 <div id="comments" class="comments"> 6 6 7 7 8 <mt: ignore>8 <mt:Ignore> 9 9 <!-- Display comments --> 10 </mt: ignore>11 < MTComments>12 < MTCommentsHeader>13 <h2 class="comments-header"><$ MTEntryCommentCount singular="<__trans phrase="1 Comment">" plural="<__trans phrase="# Comments">" none="<__trans phrase="No Comments">"$></h2>10 </mt:Ignore> 11 <mt:Comments> 12 <mt:CommentsHeader> 13 <h2 class="comments-header"><$mt:EntryCommentCount singular="<__trans phrase="1 Comment">" plural="<__trans phrase="# Comments">" none="<__trans phrase="No Comments">"$></h2> 14 14 <div class="comments-content"> 15 </ MTCommentsHeader>16 <div id="comment-<$ MTCommentID$>" class="comment<mt:IfCommentParent> comment-reply</mt:IfCommentParent>">15 </mt:CommentsHeader> 16 <div id="comment-<$mt:CommentID$>" class="comment<mt:IfCommentParent> comment-reply</mt:IfCommentParent>"> 17 17 <div class="inner"> 18 18 <div class="comment-header"> 19 19 <div class="asset-meta"> 20 20 <span class="byline"> 21 <$ MTCommentAuthorIdentity$>21 <$mt:CommentAuthorIdentity$> 22 22 <mt:IfCommentParent> 23 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<span class="vcard author"><$ MTCommentAuthorLink$></span>%%<mt:CommentParent><$mt:CommentLink$></mt:CommentParent>%%<mt:CommentParent><$MTCommentAuthor$></mt:CommentParent>">24 <mt: else>25 <span class="vcard author"><$ MTCommentAuthorLink$></span>23 <__trans phrase="[_1] replied to <a href="[_2]">comment from [_3]</a>" params="<span class="vcard author"><$mt:CommentAuthorLink$></span>%%<mt:CommentParent><$mt:CommentLink$></mt:CommentParent>%%<mt:CommentParent><$mt:CommentAuthor$></mt:CommentParent>"> 24 <mt:Else> 25 <span class="vcard author"><$mt:CommentAuthorLink$></span> 26 26 </mt:IfCommentParent> 27 | <a href="<$mt:CommentLink$>"><abbr class="published" title="<$ MTCommentDate format_name="iso8601"$>"><$MTCommentDate$></abbr></a>28 < MTIfCommentsAccepted>29 | <$ MTCommentReplyLink$>30 </ MTIfCommentsAccepted>27 | <a href="<$mt:CommentLink$>"><abbr class="published" title="<$mt:CommentDate format_name="iso8601"$>"><$mt:CommentDate$></abbr></a> 28 <mt:IfCommentsAccepted> 29 | <$mt:CommentReplyLink$> 30 </mt:IfCommentsAccepted> 31 31 </span> 32 32 </div> 33 33 </div> 34 34 <div class="comment-content"> 35 <$ MTCommentBody$>35 <$mt:CommentBody$> 36 36 </div> 37 37 </div> 38 38 </div> 39 < MTCommentsFooter>39 <mt:CommentsFooter> 40 40 </div> 41 </ MTCommentsFooter>42 </ MTComments>41 </mt:CommentsFooter> 42 </mt:Comments> 43 43 44 44 45 <mt: ignore>45 <mt:Ignore> 46 46 <!-- Display commenting form if entry/page is accepting comments --> 47 </mt: ignore>48 < MTIfCommentsAccepted>47 </mt:Ignore> 48 <mt:IfCommentsAccepted> 49 49 <div class="comments-open" id="comments-open"> 50 50 <h2 class="comments-open-header"><__trans phrase="Leave a comment"></h2> 51 51 <div class="comments-open-content"> 52 52 53 <mt: ignore>53 <mt:Ignore> 54 54 <!-- Display greeting for users if blog allows users to register locally --> 55 </mt: ignore>55 </mt:Ignore> 56 56 <div id="comment-greeting"></div> 57 57 58 <form method="post" action="<$ MTCGIPath$><$MTCommentScript$>" name="comments_form" id="comments-form" onsubmit="return mtCommentOnSubmit(this)">58 <form method="post" action="<$mt:CGIPath$><$mt:CommentScript$>" name="comments_form" id="comments-form" onsubmit="return mtCommentOnSubmit(this)"> 59 59 <input type="hidden" name="static" value="1" /> 60 <input type="hidden" name="entry_id" value="<$ MTEntryID$>" />61 <input type="hidden" name="__lang" value="<$ MTBlogLanguage$>" />62 <input type="hidden" name="parent_id" value="<$ MTCommentParentID$>" id="comment-parent-id" />60 <input type="hidden" name="entry_id" value="<$mt:EntryID$>" /> 61 <input type="hidden" name="__lang" value="<$mt:BlogLanguage$>" /> 62 <input type="hidden" name="parent_id" value="<$mt:CommentParentID$>" id="comment-parent-id" /> 63 63 <input type="hidden" name="armor" value="1" /> 64 64 <input type="hidden" name="preview" value="" /> … … 88 88 <div id="comments-open-text"> 89 89 <label for="comment-text"><__trans phrase="Comments"> 90 < MTIfAllowCommentHTML><__trans phrase="(You may use HTML tags for style)"></MTIfAllowCommentHTML></label>90 <mt:IfAllowCommentHTML><__trans phrase="(You may use HTML tags for style)"></mt:IfAllowCommentHTML></label> 91 91 <textarea id="comment-text" name="text" rows="15" cols="50" onfocus="mtCommentFormOnFocus()"></textarea> 92 92 </div> … … 101 101 </div> 102 102 </div> 103 </ MTIfCommentsAccepted>103 </mt:IfCommentsAccepted> 104 104 105 105 106 106 </div> 107 </ MTIfCommentsActive>107 </mt:IfCommentsActive> -
branches/release-40/default_templates/dynamic_error.mtml
r2101 r2603 3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 4 4 <head> 5 <$mt: include module="<__trans phrase="HTML Head">"$>6 <title><$ MTBlogName encode_html="1"$>: <__trans phrase="Page Not Found"></title>5 <$mt:Include module="<__trans phrase="HTML Head">"$> 6 <title><$mt:BlogName encode_html="1"$>: <__trans phrase="Page Not Found"></title> 7 7 </head> 8 <body id="<$mt:BlogTemplateSetID$>" class="mt-dynamic-error <$ MTVar name="page_layout"$>">8 <body id="<$mt:BlogTemplateSetID$>" class="mt-dynamic-error <$mt:Var name="page_layout"$>"> 9 9 <div id="container"> 10 10 <div id="container-inner"> 11 11 12 12 13 <$mt: include module="<__trans phrase="Banner Header">"$>13 <$mt:Include module="<__trans phrase="Banner Header">"$> 14 14 15 15 … … 22 22 <h1 id="page-title"><__trans phrase="Page Not Found"></h1> 23 23 <blockquote> 24 <strong><$ MTErrorMessage$></strong>24 <strong><$mt:ErrorMessage$></strong> 25 25 </blockquote> 26 26 </div> … … 28 28 29 29 30 <$ MTInclude module="<__trans phrase="Sidebar">"$>30 <$mt:Include module="<__trans phrase="Sidebar">"$> 31 31 32 32 … … 35 35 36 36 37 <$mt: include module="<__trans phrase="Banner Footer">"$>37 <$mt:Include module="<__trans phrase="Banner Footer">"$> 38 38 39 39 -
branches/release-40/default_templates/entry.mtml
r2593 r2603 3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 4 4 <head> 5 <$mt: include module="<__trans phrase="HTML Head">"$>6 < MTEntryPrevious><link rel="prev bookmark" href="<$MTEntryPermalink$>" title="<$MTEntryTitle encode_html="1"$>" /></MTEntryPrevious>7 < MTEntryNext><link rel="next bookmark" href="<$MTEntryPermalink$>" title="<$MTEntryTitle encode_html="1"$>" /></MTEntryNext>8 <$ MTEntryTrackbackData$>9 <title><$ MTEntryTitle encode_html="1"$> - <$MTBlogName encode_html="1"$></title>5 <$mt:Include module="<__trans phrase="HTML Head">"$> 6 <mt:EntryPrevious><link rel="prev bookmark" href="<$mt:EntryPermalink$>" title="<$mt:EntryTitle encode_html="1"$>" /></mt:EntryPrevious> 7 <mt:EntryNext><link rel="next bookmark" href="<$mt:EntryPermalink$>" title="<$mt:EntryTitle encode_html="1"$>" /></mt:EntryNext> 8 <$mt:EntryTrackbackData$> 9 <title><$mt:EntryTitle encode_html="1"$> - <$mt:BlogName encode_html="1"$></title> 10 10 </head> 11 <body id="<$mt:BlogTemplateSetID$>" class="mt-entry-archive <$ MTVar name="page_layout"$>" onload="mtEntryOnLoad()" onunload="mtEntryOnUnload()">11 <body id="<$mt:BlogTemplateSetID$>" class="mt-entry-archive <$mt:Var name="page_layout"$>" onload="mtEntryOnLoad()" onunload="mtEntryOnUnload()"> 12 12 <div id="container"> 13 13 <div id="container-inner"> 14 14 15 15 16 <$mt: include module="<__trans phrase="Banner Header">"$>16 <$mt:Include module="<__trans phrase="Banner Header">"$> 17 17 18 18 … … 25 25 26 26 27 <div id="entry-<$ MTEntryID$>" class="entry-asset asset hentry">27 <div id="entry-<$mt:EntryID$>" class="entry-asset asset hentry"> 28 28 <div class="asset-header"> 29 <h1 id="page-title" class="asset-name entry-title"><$ MTEntryTitle$></h1>29 <h1 id="page-title" class="asset-name entry-title"><$mt:EntryTitle$></h1> 30 30 <div class="asset-meta"> 31 31 <span class="byline"> 32 < MTIfNonEmpty tag="EntryAuthorDisplayName">33 <__trans phrase="By [_1] on [_2]" params="<span class="vcard author"><$ MTEntryAuthorLink show_hcard="1"$></span>%%<abbr class="published" title="<$MTEntryDate format_name="iso8601"$>"><$MTEntryDate format="%x %X"$></abbr>">34 < MTElse>35 <abbr class="published" title="<$ MTEntryDate format_name="iso8601"$>"><$MTEntryDate format="%x %X"$></abbr>36 </ MTIfNonEmpty>32 <mt:IfNonEmpty tag="EntryAuthorDisplayName"> 33 <__trans phrase="By [_1] on [_2]" params="<span class="vcard author"><$mt:EntryAuthorLink show_hcard="1"$></span>%%<abbr class="published" title="<$mt:EntryDate format_name="iso8601"$>"><$mt:EntryDate format="%x %X"$></abbr>"> 34 <mt:Else> 35 <abbr class="published" title="<$mt:EntryDate format_name="iso8601"$>"><$mt:EntryDate format="%x %X"$></abbr> 36 </mt:IfNonEmpty> 37 37 </span> 38 < MTIfCommentsActive>39 <span class="separator">|</span> <a href="<$ MTEntryPermalink$>#comments"><$MTEntryCommentCount singular="<__trans phrase="1 Comment">" plural="<__trans phrase="# Comments">" none="<__trans phrase="No Comments">"$></a>40 </ MTIfCommentsActive>41 < MTIfPingsActive>42 <span class="separator">|</span> <a href="<$ MTEntryPermalink$>#trackbacks"><$MTEntryTrackbackCount singular="<__trans phrase="1 TrackBack">" plural="<__trans phrase="# TrackBacks">" none="<__trans phrase="No TrackBacks">"$></a>43 </ MTIfPingsActive>38 <mt:IfCommentsActive> 39 <span class="separator">|</span> <a href="<$mt:EntryPermalink$>#comments"><$mt:EntryCommentCount singular="<__trans phrase="1 Comment">" plural="<__trans phrase="# Comments">" none="<__trans phrase="No Comments">"$></a> 40 </mt:IfCommentsActive> 41 <mt:IfPingsActive> 42 <span class="separator">|</span> <a href="<$mt:EntryPermalink$>#trackbacks"><$mt:EntryTrackbackCount singular="<__trans phrase="1 TrackBack">" plural="<__trans phrase="# TrackBacks">" none="<__trans phrase="No TrackBacks">"$></a> 43 </mt:IfPingsActive> 44 44 </div> 45 45 </div> 46 46 <div class="asset-content entry-content"> 47 < MTIfNonEmpty tag="EntryBody">47 <mt:IfNonEmpty tag="EntryBody"> 48 48 <div class="asset-body"> 49 <$ MTEntryBody$>49 <$mt:EntryBody$> 50 50 </div> 51 </ MTIfNonEmpty>52 < MTIfNonEmpty tag="EntryMore" convert_breaks="0">51 </mt:IfNonEmpty> 52 <mt:IfNonEmpty tag="EntryMore" convert_breaks="0"> 53 53 <div id="more" class="asset-more"> 54 <$ MTEntryMore$>54 <$mt:EntryMore$> 55 55 </div> 56 </ MTIfNonEmpty>56 </mt:IfNonEmpty> 57 57 </div> 58 58 <div class="asset-footer"> … … 62 62 <h4 class="entry-categories-header"><__trans phrase="Categories"><span class="delimiter">:</span></h4> 63 63 <ul class="entry-categories-list"> 64 <li class="entry-category">< MTEntryCategories glue='<span class="delimiter">,</span></li> <li class="entry-category">'><a href="<$MTCategoryArchiveLink$>" rel="tag"><$MTCategoryLabel$></a></MTEntryCategories></li>64 <li class="entry-category"><mt:EntryCategories glue='<span class="delimiter">,</span></li> <li class="entry-category">'><a href="<$mt:CategoryArchiveLink$>" rel="tag"><$mt:CategoryLabel$></a></mt:EntryCategories></li> 65 65 </ul> 66 66 </div> 67 67 </mt:If> 68 68 </mt:IfArchiveTypeEnabled> 69 < MTEntryIfTagged>69 <mt:EntryIfTagged> 70 70 <div class="entry-tags"> 71 71 <h4 class="entry-tags-header"><__trans phrase="Tags"><span class="delimiter">:</span></h4> 72 72 <ul class="entry-tags-list"> 73 <li class="entry-tag">< MTEntryTags glue='<span class="delimiter">,</span></li> <li class="entry-tag">'><a href="javascript:void(0)" onclick="location.href='<$MTTagSearchLink encode_js="1"$>';return false;" rel="tag"><$MTTagName$></a></MTEntryTags></li>73 <li class="entry-tag"><mt:EntryTags glue='<span class="delimiter">,</span></li> <li class="entry-tag">'><a href="javascript:void(0)" onclick="location.href='<$mt:TagSearchLink encode_js="1"$>';return false;" rel="tag"><$mt:TagName$></a></mt:EntryTags></li> 74 74 </ul> 75 75 </div> 76 </ MTEntryIfTagged>76 </mt:EntryIfTagged> 77 77 </div> 78 78 </div> 79 79 80 80 81 <$ MTInclude module="<__trans phrase="Trackbacks">"$>82 <$ MTInclude module="<__trans phrase="Comments">"$>81 <$mt:Include module="<__trans phrase="Trackbacks">"$> 82 <$mt:Include module="<__trans phrase="Comments">"$> 83 83 84 84 … … 87 87 88 88 89 <$ MTInclude module="<__trans phrase="Sidebar">"$>89 <$mt:Include module="<__trans phrase="Sidebar">"$> 90 90 91 91 … … 94 94 95 95 96 <$mt: include module="<__trans phrase="Banner Footer">"$>96 <$mt:Include module="<__trans phrase="Banner Footer">"$> 97 97 98 98 -
branches/release-40/default_templates/entry_summary.mtml
r2471 r2603 1 <$ MTEntryTrackbackData$>2 <div id="entry-<$ MTEntryID$>" class="entry-asset asset hentry">1 <$mt:EntryTrackbackData$> 2 <div id="entry-<$mt:EntryID$>" class="entry-asset asset hentry"> 3 3 <div class="asset-header"> 4 <h2 class="asset-name entry-title"><a href="<$ MTEntryPermalink$>" rel="bookmark"><$MTEntryTitle$></a></h2>4 <h2 class="asset-name entry-title"><a href="<$mt:EntryPermalink$>" rel="bookmark"><$mt:EntryTitle$></a></h2> 5 5 <div class="asset-meta"> 6 6 <span class="byline"> 7 < MTIfNonEmpty tag="EntryAuthorDisplayName">8 <__trans phrase="By [_1] on [_2]" params="<span class="vcard author"><$ MTEntryAuthorLink show_hcard="1"$></span>%%<abbr class="published" title="<$MTEntryDate format_name="iso8601"$>"><$MTEntryDate format="%x %X"$></abbr>">9 < MTElse>10 <abbr class="published" title="<$ MTEntryDate format_name="iso8601"$>"><$MTEntryDate format="%x %X"$></abbr>11 </ MTIfNonEmpty>7 <mt:IfNonEmpty tag="EntryAuthorDisplayName"> 8 <__trans phrase="By [_1] on [_2]" params="<span class="vcard author"><$mt:EntryAuthorLink show_hcard="1"$></span>%%<abbr class="published" title="<$mt:EntryDate format_name="iso8601"$>"><$mt:EntryDate format="%x %X"$></abbr>"> 9 <mt:Else> 10 <abbr class="published" title="<$mt:EntryDate format_name="iso8601"$>"><$mt:EntryDate format="%x %X"$></abbr> 11 </mt:IfNonEmpty> 12 12 </span> 13 < MTUnless name="hide_counts" eq="1">14 < MTIfCommentsActive><span class="separator">|</span> <a href="<$MTEntryPermalink$>#comments"><$MTEntryCommentCount singular="<__trans phrase="1 Comment">" plural="<__trans phrase="# Comments">" none="<__trans phrase="No Comments">"$></a></MTIfCommentsActive>15 < MTIfPingsActive><span class="separator">|</span> <a href="<$MTEntryPermalink$>#trackbacks"><$MTEntryTrackbackCount singular="<__trans phrase="1 TrackBack">" plural="<__trans phrase="# TrackBacks">" none="<__trans phrase="No TrackBacks">"$></a></MTIfPingsActive>16 </ MTUnless>13 <mt:Unless name="hide_counts" eq="1"> 14 <mt:IfCommentsActive><span class="separator">|</span> <a href="<$mt:EntryPermalink$>#comments"><$mt:EntryCommentCount singular="<__trans phrase="1 Comment">" plural="<__trans phrase="# Comments">" none="<__trans phrase="No Comments">"$></a></mt:IfCommentsActive> 15 <mt:IfPingsActive><span class="separator">|</span> <a href="<$mt:EntryPermalink$>#trackbacks"><$mt:EntryTrackbackCount singular="<__trans phrase="1 TrackBack">" plural="<__trans phrase="# TrackBacks">" none="<__trans phrase="No TrackBacks">"$></a></mt:IfPingsActive> 16 </mt:Unless> 17 17 </div> 18 18 </div> 19 19 <div class="asset-content entry-content"> 20 < MTIfNonEmpty tag="EntryBody">20 <mt:IfNonEmpty tag="EntryBody"> 21 21 <div class="asset-body"> 22 <$ MTEntryBody$>22 <$mt:EntryBody$> 23 23 </div> 24 </ MTIfNonEmpty>25 <mt: if name="entry_archive">26 < MTEntryIfTagged>24 </mt:IfNonEmpty> 25 <mt:If name="entry_archive"> 26 <mt:EntryIfTagged> 27 27 <div class="entry-tags"> 28 28 <h4 class="entry-tags-header"><__trans phrase="Tags"><span class="delimiter">:</span></h4> 29 29 <ul class="entry-tags-list"> 30 <li class="entry-tag">< MTEntryTags glue='<span class="delimiter">,</span></li> <li class="entry-tag">'><a href="javascript:void(0)" onclick="location.href='<$MTTagSearchLink encode_js="1"$>';return false;" rel="tag"><$MTTagName$></a></MTEntryTags></li>30 <li class="entry-tag"><mt:EntryTags glue='<span class="delimiter">,</span></li> <li class="entry-tag">'><a href="javascript:void(0)" onclick="location.href='<$mt:TagSearchLink encode_js="1"$>';return false;" rel="tag"><$mt:TagName$></a></mt:EntryTags></li> 31 31 </ul> 32 32 </div> 33 </ MTEntryIfTagged>34 </mt: if>35 < MTIfNonEmpty tag="EntryMore" convert_breaks="0">33 </mt:EntryIfTagged> 34 </mt:If> 35 <mt:IfNonEmpty tag="EntryMore" convert_breaks="0"> 36 36 <div class="asset-more-link"> 37 <__trans phrase="Continue reading <a href="[_1]" rel="bookmark">[_2]</a>." params="<$ MTEntryPermalink$>#more%%<$MTEntryTitle$>">37 <__trans phrase="Continue reading <a href="[_1]" rel="bookmark">[_2]</a>." params="<$mt:EntryPermalink$>#more%%<$mt:EntryTitle$>"> 38 38 </div> 39 </ MTIfNonEmpty>39 </mt:IfNonEmpty> 40 40 </div> 41 41 <div class="asset-footer"></div> -
branches/release-40/default_templates/feed_recent.mtml
r1463 r2603 1 <$ MTHTTPContentType type="application/atom+xml"$><?xml version="1.0" encoding="<$MTPublishCharset$>"?>1 <$mt:HTTPContentType type="application/atom+xml"$><?xml version="1.0" encoding="<$mt:PublishCharset$>"?> 2 2 <feed xmlns="http://www.w3.org/2005/Atom"> 3 <title><$ MTBlogName remove_html="1" encode_xml="1"$></title>4 <link rel="alternate" type="text/html" href="<$ MTBlogURL encode_xml="1"$>" />5 <link rel="self" type="application/atom+xml" href="<$ MTLink template="feed_recent"$>" />6 <id>tag:<$ MTBlogHost exclude_port="1" encode_xml="1"$>,<$MTTemplateCreatedOn format="%Y-%m-%d"$>:<$MTBlogRelativeURL encode_xml="1"$>/<$MTBlogID$></id>7 <updated>< MTEntries lastn="1"><$MTEntryModifiedDate utc="1" format="%Y-%m-%dT%H:%M:%SZ"$></MTEntries></updated>8 < MTIfNonEmpty tag="MTBlogDescription"><subtitle><$MTBlogDescription remove_html="1" encode_xml="1"$></subtitle></MTIfNonEmpty>9 <generator uri="http://www.sixapart.com/movabletype/"><$ MTProductName version="1"$></generator>10 < MTEntries lastn="15">3 <title><$mt:BlogName remove_html="1" encode_xml="1"$></title> 4 <link rel="alternate" type="text/html" href="<$mt:BlogURL encode_xml="1"$>" /> 5 <link rel="self" type="application/atom+xml" href="<$mt:Link template="feed_recent"$>" /> 6 <id>tag:<$mt:BlogHost exclude_port="1" encode_xml="1"$>,<$mt:TemplateCreatedOn format="%Y-%m-%d"$>:<$mt:BlogRelativeURL encode_xml="1"$>/<$mt:BlogID$></id> 7 <updated><mt:Entries lastn="1"><$mt:EntryModifiedDate utc="1" format="%Y-%m-%dT%H:%M:%SZ"$></mt:Entries></updated> 8 <mt:IfNonEmpty tag="MTBlogDescription"><subtitle><$mt:BlogDescription remove_html="1" encode_xml="1"$></subtitle></mt:IfNonEmpty> 9 <generator uri="http://www.sixapart.com/movabletype/"><$mt:ProductName version="1"$></generator> 10 <mt:Entries lastn="15"> 11 11 <entry> 12 <title><$ MTEntryTitle remove_html="1" encode_xml="1"$></title>13 <link rel="alternate" type="text/html" href="<$ MTEntryPermalink encode_xml="1"$>" />14 <id><$ MTEntryAtomID$></id>12 <title><$mt:EntryTitle remove_html="1" encode_xml="1"$></title> 13 <link rel="alternate" type="text/html" href="<$mt:EntryPermalink encode_xml="1"$>" /> 14 <id><$mt:EntryAtomID$></id> 15 15 16 <published><$ MTEntryDate utc="1" format="%Y-%m-%dT%H:%M:%SZ"$></published>17 <updated><$ MTEntryModifiedDate utc="1" format="%Y-%m-%dT%H:%M:%SZ"$></updated>16 <published><$mt:EntryDate utc="1" format="%Y-%m-%dT%H:%M:%SZ"$></published> 17 <updated><$mt:EntryModifiedDate utc="1" format="%Y-%m-%dT%H:%M:%SZ"$></updated> 18 18 19 <summary><$ MTEntryExcerpt remove_html="1" encode_xml="1"$></summary>19 <summary><$mt:EntryExcerpt remove_html="1" encode_xml="1"$></summary> 20 20 <author> 21 <name><$ MTEntryAuthorDisplayName encode_xml="1"$></name>22 < MTIfNonEmpty tag="MTEntryAuthorURL"><uri><$MTEntryAuthorURL encode_xml="1"$></uri></MTIfNonEmpty>21 <name><$mt:EntryAuthorDisplayName encode_xml="1"$></name> 22 <mt:IfNonEmpty tag="MTEntryAuthorURL"><uri><$mt:EntryAuthorURL encode_xml="1"$></uri></mt:IfNonEmpty> 23 23 </author> 24 < MTEntryCategories>25 <category term="<$ MTCategoryLabel encode_xml="1"$>" scheme="http://www.sixapart.com/ns/types#category" />26 </ MTEntryCategories>27 < MTEntryIfTagged><MTEntryTags><category term="<$MTTagName normalize="1" encode_xml="1"$>" label="<$MTTagName encode_xml="1"$>" scheme="http://www.sixapart.com/ns/types#tag" />28 </ MTEntryTags></MTEntryIfTagged>29 <content type="html" xml:lang="<$ MTBlogLanguage ietf="1"$>" xml:base="<$MTBlogURL encode_xml="1"$>">30 <$ MTEntryBody encode_xml="1"$>31 <$ MTEntryMore encode_xml="1"$>24 <mt:EntryCategories> 25 <category term="<$mt:CategoryLabel encode_xml="1"$>" scheme="http://www.sixapart.com/ns/types#category" /> 26 </mt:EntryCategories> 27 <mt:EntryIfTagged><mt:EntryTags><category term="<$mt:TagName normalize="1" encode_xml="1"$>" label="<$mt:TagName encode_xml="1"$>" scheme="http://www.sixapart.com/ns/types#tag" /> 28 </mt:EntryTags></mt:EntryIfTagged> 29 <content type="html" xml:lang="<$mt:BlogLanguage ietf="1"$>" xml:base="<$mt:BlogURL encode_xml="1"$>"> 30 <$mt:EntryBody encode_xml="1"$> 31 <$mt:EntryMore encode_xml="1"$> 32 32 </content> 33 33 </entry> 34 </ MTEntries>34 </mt:Entries> 35 35 </feed> -
branches/release-40/default_templates/footer-email.mtml
r1102 r2603 1 1 2 2 -- 3 <__trans phrase="Powered by Movable Type [_1]" params="<$ MTVersion$>">4 <$mt: var name="portal_url"$>3 <__trans phrase="Powered by Movable Type [_1]" params="<$mt:Version$>"> 4 <$mt:Var name="portal_url"$> -
branches/release-40/default_templates/html_head.mtml
r2239 r2603 1 <meta http-equiv="Content-Type" content="text/html; charset=<$ MTPublishCharset$>" />2 <meta name="generator" content="<$ MTProductName version="1"$>" />3 <link rel="stylesheet" href="<$ MTLink template="styles"$>" type="text/css" />4 <link rel="start" href="<$ MTBlogURL$>" title="Home" />5 <link rel="alternate" type="application/atom+xml" title="Recent Entries" href="<$ MTLink template="feed_recent"$>" />6 <script type="text/javascript" src="<$ MTLink template="javascript"$>"></script>7 <$ MTCCLicenseRDF$>1 <meta http-equiv="Content-Type" content="text/html; charset=<$mt:PublishCharset$>" /> 2 <meta name="generator" content="<$mt:ProductName version="1"$>" /> 3 <link rel="stylesheet" href="<$mt:Link template="styles"$>" type="text/css" /> 4 <link rel="start" href="<$mt:BlogURL$>" title="Home" /> 5 <link rel="alternate" type="application/atom+xml" title="Recent Entries" href="<$mt:Link template="feed_recent"$>" /> 6 <script type="text/javascript" src="<$mt:Link template="javascript"$>"></script> 7 <$mt:CCLicenseRDF$> -
branches/release-40/default_templates/javascript.mtml
r2553 r2603 477 477 url += '&entry_id=' + entry_id; 478 478 } else { 479 url += '&return_url=<$ MTBlogURL encode_url="1"$>';479 url += '&return_url=<$mt:BlogURL encode_url="1"$>'; 480 480 } 481 481 } else { … … 528 528 url += '&entry_id=' + entry_id; 529 529 } else { 530 url += '&return_url=<$ MTBlogURL encode_url="1"$>';530 url += '&return_url=<$mt:BlogURL encode_url="1"$>'; 531 531 } 532 532 } else { -
branches/release-40/default_templates/main_index.mtml
r2312 r2603 3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 4 4 <head> 5 <$mt: include module="<__trans phrase="HTML Head">"$>6 <link rel="EditURI" type="application/rsd+xml" title="RSD" href="<$ MTLink template="rsd"$>" />7 <title><$ MTBlogName encode_html="1"$></title>5 <$mt:Include module="<__trans phrase="HTML Head">"$> 6 <link rel="EditURI" type="application/rsd+xml" title="RSD" href="<$mt:Link template="rsd"$>" /> 7 <title><$mt:BlogName encode_html="1"$></title> 8 8 </head> 9 <body id="<$mt:BlogTemplateSetID$>" class="mt-main-index <$ MTVar name="page_layout"$>">9 <body id="<$mt:BlogTemplateSetID$>" class="mt-main-index <$mt:Var name="page_layout"$>"> 10 10 <div id="container"> 11 11 <div id="container-inner"> 12 12 13 13 14 <$mt: include module="<__trans phrase="Banner Header">"$>14 <$mt:Include module="<__trans phrase="Banner Header">"$> 15 15 16 16 … … 21 21 <div id="alpha"> 22 22 <div id="alpha-inner"> 23 < MTEntries>24 <mt: ignore><!-- Use the Entry Summary module for each entry published on this page --></mt:ignore>25 <$mt: include module="<__trans phrase="Entry Summary">"$>26 </ MTEntries>23 <mt:Entries> 24 <mt:Ignore><!-- Use the Entry Summary module for each entry published on this page --></mt:Ignore> 25 <$mt:Include module="<__trans phrase="Entry Summary">"$> 26 </mt:Entries> 27 27 28 28 29 29 <div class="content-nav"> 30 <a href="<$ MTLink template="archive_index"$>"><__trans phrase="Archives"></a>30 <a href="<$mt:Link template="archive_index"$>"><__trans phrase="Archives"></a> 31 31 </div> 32 32 … … 36 36 37 37 38 <$ MTInclude module="<__trans phrase="Sidebar">"$>38 <$mt:Include module="<__trans phrase="Sidebar">"$> 39 39 40 40 … … 43 43 44 44 45 <$mt: include module="<__trans phrase="Banner Footer">"$>45 <$mt:Include module="<__trans phrase="Banner Footer">"$> 46 46 47 47 -
branches/release-40/default_templates/main_index_widgets_group.mtml
r2052 r2603 3 3 </mt:Ignore> 4 4 <mt:If name="main_index"> 5 <$mt: include widget="<__trans phrase="Recent Comments">"$>6 <$mt: include widget="<__trans phrase="Recent Entries">"$>7 <$mt: include widget="<__trans phrase="Recent Assets">"$>8 <$mt: include widget="<__trans phrase="Tag Cloud">"$>5 <$mt:Include widget="<__trans phrase="Recent Comments">"$> 6 <$mt:Include widget="<__trans phrase="Recent Entries">"$> 7 <$mt:Include widget="<__trans phrase="Recent Assets">"$> 8 <$mt:Include widget="<__trans phrase="Tag Cloud">"$> 9 9 </mt:If> -
branches/release-40/default_templates/monthly_entry_listing.mtml
r2101 r2603 3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 4 4 <head> 5 <$mt: include module="<__trans phrase="HTML Head">"$>6 <title><$ MTBlogName encode_html="1"$>: <__trans phrase="[_1] Archives" params="<$MTArchiveTitle$>"></title>7 <mt: ignore>5 <$mt:Include module="<__trans phrase="HTML Head">"$> 6 <title><$mt:BlogName encode_html="1"$>: <__trans phrase="[_1] Archives" params="<$mt:ArchiveTitle$>"></title> 7 <mt:Ignore> 8 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>9 </mt:Ignore> 10 <mt:If name="datebased_archive"> 11 <mt:ArchivePrevious><link rel="prev" href="<$mt:ArchiveLink$>" title="<$mt:ArchiveTitle encode_html="1"$>" /></mt:ArchivePrevious> 12 <mt:ArchiveNext><link rel="next" href="<$mt:ArchiveLink$>" title="<$mt:ArchiveTitle encode_html="1"$>" /></mt:ArchiveNext> 13 </mt:If> 14 14 </head> 15 <body id="<$mt:BlogTemplateSetID$>" class="mt-archive-listing mt-< MTVar name="archive_class"> <$MTVar name="page_layout"$>">15 <body id="<$mt:BlogTemplateSetID$>" class="mt-archive-listing mt-<$mt:Var name="archive_class"$> <$mt:Var name="page_layout"$>"> 16 16 <div id="container"> 17 17 <div id="container-inner"> 18 18 19 19 20 <$mt: include module="<__trans phrase="Banner Header">"$>20 <$mt:Include module="<__trans phrase="Banner Header">"$> 21 21 22 22 … … 29 29 30 30 31 <h1 id="page-title" class="archive-title"><__trans phrase="[_1] Archives" params="<$ MTArchiveTitle$>"></h1>31 <h1 id="page-title" class="archive-title"><__trans phrase="[_1] Archives" params="<$mt:ArchiveTitle$>"></h1> 32 32 33 33 34 <mt: ignore><!-- Limit number of entries to the number set in Blog Entry Settings --></mt:ignore>35 < MTUnless name="datebased_archive"><$mt:setvar name="limit" value="auto"$></MTUnless>36 < MTEntries limit="$limit">37 <mt: ignore><!-- Use the Entry Summary module for each entry published on this page --></mt:ignore>38 <$mt: include module="<__trans phrase="Entry Summary">"$>39 </ MTEntries>34 <mt:Ignore><!-- Limit number of entries to the number set in Blog Entry Settings --></mt:Ignore> 35 <mt:Unless name="datebased_archive"><$mt:SetVar name="limit" value="auto"$></mt:Unless> 36 <mt:Entries limit="$limit"> 37 <mt:Ignore><!-- Use the Entry Summary module for each entry published on this page --></mt:Ignore> 38 <$mt:Include module="<__trans phrase="Entry Summary">"$> 39 </mt:Entries> 40 40 41 41 42 42 <div class="content-nav"> 43 < MTArchivePrevious><a href="<$MTArchiveLink$>">« <$MTArchiveTitle$></a> |</MTArchivePrevious>44 <a href="<$ MTLink template="main_index"$>"><__trans phrase="Main Index"></a> |45 <a href="<$ MTLink template="archive_index"$>"><__trans phrase="Archives"></a>46 < MTArchiveNext>| <a href="<$MTArchiveLink$>"><$MTArchiveTitle$> »</a></MTArchiveNext>43 <mt:ArchivePrevious><a href="<$mt:ArchiveLink$>">« <$mt:ArchiveTitle$></a> |</mt:ArchivePrevious> 44 <a href="<$mt:Link template="main_index"$>"><__trans phrase="Main Index"></a> | 45 <a href="<$mt:Link template="archive_index"$>"><__trans phrase="Archives"></a> 46 <mt:ArchiveNext>| <a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> »</a></mt:ArchiveNext> 47 47 </div> 48 48 … … 52 52 53 53 54 <$ MTInclude module="<__trans phrase="Sidebar">"$>54 <$mt:Include module="<__trans phrase="Sidebar">"$> 55 55 56 56 … … 59 59 60 60 61 <$mt: include module="<__trans phrase="Banner Footer">"$>61 <$mt:Include module="<__trans phrase="Banner Footer">"$> 62 62 63 63 -
branches/release-40/default_templates/new-comment.mtml
r1103 r2603 1 <mt: if name="unapproved"><__trans phrase="An unapproved comment has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site." params="<$MTBlogName$>%%<$MTEntryID$>%%<$MTEntryTitle$>"><mt:else><__trans phrase="A new comment has been posted on your blog [_1], on entry #[_2] ([_3])." params="<$MTBlogName$>%%<$MTEntryID$>%%<$MTEntryTitle$>"></mt:if>1 <mt:If name="unapproved"><__trans phrase="An unapproved comment has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site." params="<$mt:BlogName$>%%<$mt:EntryID$>%%<$mt:EntryTitle$>"><mt:Else><__trans phrase="A new comment has been posted on your blog [_1], on entry #[_2] ([_3])." params="<$mt:BlogName$>%%<$mt:EntryID$>%%<$mt:EntryTitle$>"></mt:If> 2 2 3 <$ MTCommentBody remove_html="1" wrap_text="72"$>3 <$mt:CommentBody remove_html="1" wrap_text="72"$> 4 4 5 <__trans phrase="Commenter name: [_1]" params="<$ MTCommentAuthor$>">6 <__trans phrase="Commenter email address: [_1]" params="<$ MTCommentEmail$>">7 <__trans phrase="Commenter URL: [_1]" params="<$ MTCommentURL$>">8 <__trans phrase="Commenter IP address: [_1]" params="<$ MTCommentIP$>">5 <__trans phrase="Commenter name: [_1]" params="<$mt:CommentAuthor$>"> 6 <__trans phrase="Commenter email address: [_1]" params="<$mt:CommentEmail$>"> 7 <__trans phrase="Commenter URL: [_1]" params="<$mt:CommentURL$>"> 8 <__trans phrase="Commenter IP address: [_1]" params="<$mt:CommentIP$>"> 9 9 10 <mt: if name="unapproved"><mt:if name="state_editable"><__trans phrase="Approve comment:">11 << mt:var name="approve_url">></mt:if></mt:if>12 <mt: if name="view_url"><__trans phrase="View comment:">13 << mt:var name="view_url">></mt:if>10 <mt:If name="unapproved"><mt:If name="state_editable"><__trans phrase="Approve comment:"> 11 <<$mt:Var name="approve_url"$>></mt:If></mt:If> 12 <mt:If name="view_url"><__trans phrase="View comment:"> 13 <<$mt:Var name="view_url"$>></mt:If> 14 14 <__trans phrase="Edit comment:"> 15 << mt:var name="edit_url">>16 <mt: if name="state_editable"><__trans phrase="Report comment as spam:">17 << mt:var name="spam_url">></mt:if>15 <<$mt:Var name="edit_url"$>> 16 <mt:If name="state_editable"><__trans phrase="Report comment as spam:"> 17 <<$mt:Var name="spam_url"$>></mt:If> 18 18 19 < mt:include module="<__trans phrase="Mail Footer">">19 <$mt:Include module="<__trans phrase="Mail Footer">"$> -
branches/release-40/default_templates/new-ping.mtml
r1103 r2603 1 <mt: if name="unapproved"><mt:if name="entry_id"><__trans phrase="An unapproved TrackBack has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this TrackBack before it will appear on your site." params="<$MTBlogName$>%%<$MTEntryID$>%%<$MTEntryTitle$>">"><mt:else><mt:if name="category_id"><__trans phrase="An unapproved TrackBack has been posted on your blog [_1], for category #[_2], ([_3]). You need to approve this TrackBack before it will appear on your site." params="<$MTBlogName$>%%<$MTCategoryID$>%%<$MTCategoryLabel$>"></mt:if></mt:if></mt:if><mt:unless name="unapproved"><mt:if name="entry_id"><__trans phrase="A new TrackBack has been posted on your blog [_1], on entry #[_2] ([_3])." params="<$MTBlogName$>%%<$MTEntryID$>%%<$MTEntryTitle$>"><mt:else><mt:if name="category_id"><__trans phrase="A new TrackBack has been posted on your blog [_1], on category #[_2] ([_3])." params="<$MTBlogName$>%%<$MTCategoryID$>%%<$MTCategoryLabel$>"></mt:if></mt:if></mt:unless>1 <mt:If name="unapproved"><mt:If name="entry_id"><__trans phrase="An unapproved TrackBack has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this TrackBack before it will appear on your site." params="<$mt:BlogName$>%%<$mt:EntryID$>%%<$mt:EntryTitle$>">"><mt:Else><mt:If name="category_id"><__trans phrase="An unapproved TrackBack has been posted on your blog [_1], for category #[_2], ([_3]). You need to approve this TrackBack before it will appear on your site." params="<$mt:BlogName$>%%<$mt:CategoryID$>%%<$mt:CategoryLabel$>"></mt:If></mt:If></mt:If><mt:Unless name="unapproved"><mt:If name="entry_id"><__trans phrase="A new TrackBack has been posted on your blog [_1], on entry #[_2] ([_3])." params="<$mt:BlogName$>%%<$mt:EntryID$>%%<$mt:EntryTitle$>"><mt:Else><mt:If name="category_id"><__trans phrase="A new TrackBack has been posted on your blog [_1], on category #[_2] ([_3])." params="<$mt:BlogName$>%%<$mt:CategoryID$>%%<$mt:CategoryLabel$>"></mt:If></mt:If></mt:Unless> 2 2 3 3 <__trans phrase="Excerpt">: 4 <$ MTPingExcerpt wrap_text="72"$>4 <$mt:PingExcerpt wrap_text="72"$> 5 5 6 <__trans phrase="URL">: <$ MTPingURL$>7 <__trans phrase="Title">: <$ MTPingTitle$>8 <__trans phrase="Blog">: <$ MTPingBlogName$>9 <__trans phrase="IP address">: <$ MTPingIP$>6 <__trans phrase="URL">: <$mt:PingURL$> 7 <__trans phrase="Title">: <$mt:PingTitle$> 8 <__trans phrase="Blog">: <$mt:PingBlogName$> 9 <__trans phrase="IP address">: <$mt:PingIP$> 10 10 11 <mt: if name="state_editable"><mt:if name="unapproved"><__trans phrase="Approve TrackBack">:12 << mt:var name="approve_url">>13 </mt: if></mt:if>14 <mt: if name="entry"><mt:ifnonempty tag="EntryPermalink"><__trans phrase="View TrackBack">:15 <<$ MTEntryPermalink$>>16 </mt: ifnonempty></mt:if>17 <mt: if name="state_editable"><__trans phrase="Report TrackBack as spam">:18 << mt:var name="spam_url">>19 </mt: if>11 <mt:If name="state_editable"><mt:If name="unapproved"><__trans phrase="Approve TrackBack">: 12 <<$mt:Var name="approve_url"$>> 13 </mt:If></mt:If> 14 <mt:If name="entry"><mt:IfNonEmpty tag="EntryPermalink"><__trans phrase="View TrackBack">: 15 <<$mt:EntryPermalink$>> 16 </mt:IfNonEmpty></mt:If> 17 <mt:If name="state_editable"><__trans phrase="Report TrackBack as spam">: 18 <<$mt:Var name="spam_url"$>> 19 </mt:If> 20 20 <__trans phrase="Edit TrackBack">: 21 << mt:var name="edit_url">>21 <<$mt:Var name="edit_url"$>> 22 22 23 < mt:include module="<__trans phrase="Mail Footer">">23 <$mt:Include module="<__trans phrase="Mail Footer">"$> -
branches/release-40/default_templates/notify-entry.mtml
r1118 r2603 1 <__trans phrase="A new [lc,_3] entitled '[_1]' has been published to [_2]." params="<$ MTEntryTitle$>%%<$MTBlogName$>%%<$MTEntryClassLabel$>">1 <__trans phrase="A new [lc,_3] entitled '[_1]' has been published to [_2]." params="<$mt:EntryTitle$>%%<$mt:BlogName$>%%<$mt:EntryClassLabel$>"> 2 2 3 <mt: if name="object_type" eq="entry"><__trans phrase="View entry:"><mt:else><__trans phrase="View page:"></mt:if> <<mt:setvarblock name="entry_status"><$MTEntryStatus$></mt:setvarblock><mt:if name="entry_status" eq="Publish"><$MTEntryPermalink$><mt:else><mt:var name="entry_editurl"></mt:if>>3 <mt:If name="object_type" eq="entry"><__trans phrase="View entry:"><mt:Else><__trans phrase="View page:"></mt:If> <<mt:SetVarBlock name="entry_status"><$mt:EntryStatus$></mt:SetVarBlock><mt:If name="entry_status" eq="Publish"><$mt:EntryPermalink$><mt:Else><$mt:Var name="entry_editurl"$></mt:If>> 4 4 5 5 ------------------------------------------------------------------------ 6 <__trans phrase="[_1] Title: [_2]" params="<$ MTEntryClassLabel lower_case="1"$>%%<$MTEntryTitle$>">7 <__trans phrase="Publish Date: [_1]" params="<$ MTEntryDate mail="1"$>">8 <mt: if name="send_excerpt">6 <__trans phrase="[_1] Title: [_2]" params="<$mt:EntryClassLabel lower_case="1"$>%%<$mt:EntryTitle$>"> 7 <__trans phrase="Publish Date: [_1]" params="<$mt:EntryDate mail="1"$>"> 8 <mt:If name="send_excerpt"> 9 9 10 <$ MTEntryExcerpt wrap_text="72"$>11 </mt: if>10 <$mt:EntryExcerpt wrap_text="72"$> 11 </mt:If> 12 12 ------------------------------------------------------------------------ 13 13 14 <mt: if name="message"><__trans phrase="Message from Sender:">15 < mt:var name="message"></mt:if>16 <mt: if name="send_body">14 <mt:If name="message"><__trans phrase="Message from Sender:"> 15 <$mt:Var name="message"$></mt:If> 16 <mt:If name="send_body"> 17 17 ------------------------------------------------------------------------ 18 18 19 <$ MTEntryBody remove_html="1" wrap_text="72"$>19 <$mt:EntryBody remove_html="1" wrap_text="72"$> 20 20 21 ------------------------------------------------------------------------</mt: if>21 ------------------------------------------------------------------------</mt:If> 22 22 23 <__trans phrase="You are receiving this email either because you have elected to receive notifications about new content on [_1], or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:" params="<$ MTBlogName$>">23 <__trans phrase="You are receiving this email either because you have elected to receive notifications about new content on [_1], or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:" params="<$mt:BlogName$>"> 24 24 25 <$ MTAuthorDisplayName$> <<$MTAuthorEmail$>>25 <$mt:AuthorDisplayName$> <<$mt:AuthorEmail$>> -
branches/release-40/default_templates/page.mtml
r2312 r2603 3 3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 4 4 <head> 5 <$mt: include module="<__trans phrase="HTML Head">"$>5 <$mt:Include module="<__trans phrase="HTML Head">"$> 6 6 <$mt:EntryTrackbackData$> 7 7 <title><$mt:PageTitle encode_html="1"$> - <$mt:BlogName encode_html="1"$></title> … … 12 12 13 13 14 <$mt: include module="<__trans phrase="Banner Header">"$>14 <$mt:Include module="<__trans phrase="Banner Header">"$> 15 15 16 16 … … 58 58 59 59 60 <$mt: include module="<__trans phrase="Banner Footer">"$>60 <$mt:Include module="<__trans phrase="Banner Footer">"$> 61 61 62 62 -
branches/release-40/default_templates/popup_image.mtml
r1423 r2603 1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 2 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard"> 3 <head><title><$ MTImageURL$></title></head>3 <head><title><$mt:ImageURL$></title></head> 4 4 <body id="uploaded-image-popup" class="popup" style="margin: 0;padding: 0;"> 5 <img src="<$ MTImageURL$>" width="<$MTImageWidth$>" height="<$MTImageHeight$>" alt="<$MTImageURL$>" style="margin: 0;padding: 0;border: 0;" />5 <img src="<$mt:ImageURL$>" width="<$mt:ImageWidth$>" height="<$mt:ImageHeight$>" alt="<$mt:ImageURL$>" style="margin: 0;padding: 0;border: 0;" /> 6 6 </body> 7 7 </html> -
branches/release-40/default_templates/recover-password.mtml
r1104 r2603 1 1 <__trans phrase="_USAGE_FORGOT_PASSWORD_1"> 2 2 3 < mt:var name="user_password">3 <$mt:Var name="user_password"$> 4 4 5 5 <__trans phrase="_USAGE_FORGOT_PASSWORD_2"> 6 6 7 < mt:var name="link_to_login">7 <$mt:Var name="link_to_login"$> 8 8 9 < mt:include module="<__trans phrase="Mail Footer">">9 <$mt:Include module="<__trans phrase="Mail Footer">"$> 10 10 -
branches/release-40/default_templates/rsd.mtml
r1098 r2603 1 <$ MTHTTPContentType type="application/rsd+xml"$><?xml version="1.0"?>1 <$mt:HTTPContentType type="application/rsd+xml"$><?xml version="1.0"?> 2 2 <rsd version="1.0" xmlns="http://archipelago.phrasewise.com/rsd"> 3 3 <service> 4 <engineName><$ MTProductName version="1"$></engineName>4 <engineName><$mt:ProductName version="1"$></engineName> 5 5 <engineLink>http://www.sixapart.com/movabletype/</engineLink> 6 <homePageLink><$ MTBlogURL$></homePageLink>6 <homePageLink><$mt:BlogURL$></homePageLink> 7 7 <apis> 8 <api name="MetaWeblog" preferred="true" apiLink="<$ MTCGIPath$><$MTXMLRPCScript$>" blogID="<$MTBlogID$>" />9 <api name="MovableType" preferred="false" apiLink="<$ MTCGIPath$><$MTXMLRPCScript$>" blogID="<$MTBlogID$>" />10 <api name="Blogger" preferred="false" apiLink="<$ MTCGIPath$><$MTXMLRPCScript$>" blogID="<$MTBlogID$>" />11 <api name="Atom" preferred="false" apiLink="<$ MTCGIPath$><$MTAtomScript$>/weblog" blogID="<$MTBlogID$>" />8 <api name="MetaWeblog" preferred="true" apiLink="<$mt:CGIPath$><$mt:XMLRPCScript$>" blogID="<$mt:BlogID$>" /> 9 <api name="MovableType" preferred="false" apiLink="<$mt:CGIPath$><$mt:XMLRPCScript$>" blogID="<$mt:BlogID$>" /> 10 <api name="Blogger" preferred="false" apiLink="<$mt:CGIPath$><$mt:XMLRPCScript$>" blogID="<$mt:BlogID$>" /> 11 <api name="Atom" preferred="false" apiLink="<$mt:CGIPath$><$mt:AtomScript$>/weblog" blogID="<$mt:BlogID$>" /> 12 12 </apis> 13 13 </service> -
branches/release-40/default_templates/search.mtml
r2455 r2603 6 6 <mt:If name="search_results"> 7 7 <input type="hidden" name="IncludeBlogs" value="<$mt:SearchIncludeBlogs$>" /> 8 < MTIgnore>8 <mt:Ignore> 9 9 <!-- use these options only with MT::App::Search::Legacy --> 10 10 <ul class="search-options"> … … 12 12 <li><input type="checkbox" name="RegexSearch" /> <__trans phrase="Regex search"></li> 13 13 </ul> 14 </ MTIgnore>15 <mt: else>14 </mt:Ignore> 15 <mt:Else> 16 16 <input type="hidden" name="IncludeBlogs" value="<$mt:BlogID$>" /> 17 </mt: if>18 <input type="hidden" name="limit" value="< MTSearchMaxResults>" />17 </mt:If> 18 <input type="hidden" name="limit" value="<$mt:SearchMaxResults$>" /> 19 19 <input type="submit" accesskey="4" value="<__trans phrase="Search">" /> 20 20 </form> … … 28 28 <ul class="widget-list"> 29 29 <mt:Tags> 30 <li class="widget-list-item"><a href="javascript:void(0)" onclick="location.href='<$ MTTagSearchLink encode_js="1"$>';return false;"><__trans phrase="[_1] ([_2])" params="<$mt:TagName$>%%<$mt:TagCount$>"></a></li>30 <li class="widget-list-item"><a href="javascript:void(0)" onclick="location.href='<$mt:TagSearchLink encode_js="1"$>';return false;"><__trans phrase="[_1] ([_2])" params="<$mt:TagName$>%%<$mt:TagCount$>"></a></li> 31 31 </mt:Tags> 32 32 </ul> -
branches/release-40/default_templates/search_results.mtml
r2463 r2603 5 5 <script type="text/javascript"> 6 6 /* <![CDATA[ */ 7 var user = <$ MTUserSessionState$>;7 var user = <$mt:UserSessionState$>; 8 8 /* ]]> */ 9 9 </script> 10 <$mt: include module="<__trans phrase="HTML Head">"$>11 <title><$ MTBlogName encode_html="1"$>: <__trans phrase="Search Results"></title>12 < MTIgnore>Below Javascript adds ajax search capability</MTIgnore>10 <$mt:Include module="<__trans phrase="HTML Head">"$> 11 <title><$mt:BlogName encode_html="1"$>: <__trans phrase="Search Results"></title> 12 <mt:Ignore>Below Javascript adds ajax search capability</mt:Ignore> 13 13 <script type="text/javascript"> 14 14 /* <![CDATA[ */ 15 < MTIfMoreResults>15 <mt:IfMoreResults> 16 16 function getResults(page) { 17 17 page = parseInt(page); … … 58 58 return false; 59 59 } 60 < MTElse><MTIfPreviousResults>60 <mt:Else><mt:IfPreviousResults> 61 61 function swapContent(direction) { 62 62 return true; 63 }</ MTIfPreviousResults>64 </ MTIfMoreResults>63 }</mt:IfPreviousResults> 64 </mt:IfMoreResults> 65 65 /* ]]> */ 66 66 </script> 67 67 </head> 68 <body id="<$mt:BlogTemplateSetID$>" class="mt-search-results <$ MTVar name="page_layout"$>">68 <body id="<$mt:BlogTemplateSetID$>" class="mt-search-results <$mt:Var name="page_layout"$>"> 69 69 <div id="container"> 70 70 <div id="container-inner"> 71 71 72 72 73 <$mt: include module="<__trans phrase="Banner Header">"$>73 <$mt:Include module="<__trans phrase="Banner Header">"$> 74 74 75 75 … … 81 81 <div id="alpha-inner"> 82 82 83 <mt: ignore><!--83 <mt:Ignore><!-- 84 84 Below is the block to show search results. 85 85 This makes an independent block to support 86 86 Ajax-based background retrieval of the next search results. 87 --></mt: ignore>88 < MTSetVarTemplate id="search_results" name="search_results">89 < MTSearchResults>90 < MTSearchResultsHeader>87 --></mt:Ignore> 88 <mt:SetVarTemplate id="search_results" name="search_results"> 89 <mt:SearchResults> 90 <mt:SearchResultsHeader> 91 91 <div id="search-results"> 92 <span id="current-page" class="hidden">< MTCurrentPage></span>92 <span id="current-page" class="hidden"><$mt:CurrentPage$></span> 93 93 <h1 id="page-title" class="search-results-header"> 94 < MTIfStraightSearch>95 <__trans phrase="Results matching “[_1]”" params="<$ MTSearchString$>">96 </ MTIfStraightSearch>97 < MTIfTagSearch>98 <__trans phrase="Results tagged “[_1]”" params="<$ MTSearchString$>">99 </ MTIfTagSearch>94 <mt:IfStraightSearch> 95 <__trans phrase="Results matching “[_1]”" params="<$mt:SearchString$>"> 96 </mt:IfStraightSearch> 97 <mt:IfTagSearch> 98 <__trans phrase="Results tagged “[_1]”" params="<$mt:SearchString$>"> 99 </mt:IfTagSearch> 100 100 </h1> 101 101 <div class="search-results-container autopagerize_page_element"> 102 </ MTSearchResultsHeader>103 <$ MTInclude module="<__trans phrase="Entry Summary">" hide_counts="1"$>104 < MTSearchResultsFooter>102 </mt:SearchResultsHeader> 103 <$mt:Include module="<__trans phrase="Entry Summary">" hide_counts="1"$> 104 <mt:SearchResultsFooter> 105 105 </div><div class="autopagerize_insert_before"></div> 106 106 107 < MTIgnore><!-- Used with the ajax search capability of the new search class --></MTIgnore>107 <mt:Ignore><!-- Used with the ajax search capability of the new search class --></mt:Ignore> 108 108 <div class="content-nav"> 109 < MTIfPreviousResults><a href="<MTPreviousLink>" rel="prev" onclick="return swapContent(-1);">< <__trans phrase="Previous"></a> </MTIfPreviousResults><MTPagerBlock><MTIfCurrentPage><MTVar name="__value__"><MTElse><a href="<MTPagerLink>"><MTVar name="__value__"></a></MTIfCurrentPage><mt:unless name="__last__"> </mt:unless></MTPagerBlock><MTIfMoreResults> <a href="<MTNextLink>" rel="next" onclick="return swapContent();"><__trans phrase="Next"> ></a></MTIfMoreResults>109 <mt:IfPreviousResults><a href="<$mt:PreviousLink$>" rel="prev" onclick="return swapContent(-1);">< <__trans phrase="Previous"></a> </mt:IfPreviousResults><mt:PagerBlock><mt:IfCurrentPage><$mt:Var name="__value__"$><mt:Else><a href="<$mt:PagerLink$>"><$mt:Var name="__value__"$></a></mt:IfCurrentPage><mt:Unless name="__last__"> </mt:Unless></mt:PagerBlock><mt:IfMoreResults> <a href="<$mt:NextLink$>" rel="next" onclick="return swapContent();"><__trans phrase="Next"> ></a></mt:IfMoreResults> 110 110 </div> 111 111 </div> 112 </ MTSearchResultsFooter>113 </ MTSearchResults>114 </ MTSetVarTemplate>115 <mt: ignore><!-- Display search results constructed in the block above --></mt:ignore>116 < mt:var name="search_results">112 </mt:SearchResultsFooter> 113 </mt:SearchResults> 114 </mt:SetVarTemplate> 115 <mt:Ignore><!-- Display search results constructed in the block above --></mt:Ignore> 116 <$mt:Var name="search_results"$> 117 117 118 118 119 <mt: ignore><!-- Display no results message --></mt:ignore>120 < MTNoSearchResults>119 <mt:Ignore><!-- Display no results message --></mt:Ignore> 120 <mt:NoSearchResults> 121 121 <h1 id="page-title" class="search-results-header"> 122 < MTIfStraightSearch>123 <__trans phrase="Results matching “[_1]”" params="<$ MTSearchString$>">124 </ MTIfStraightSearch>125 < MTIfTagSearch>126 <__trans phrase="Results tagged “[_1]”" params="<$ MTSearchString$>">127 </ MTIfTagSearch>122 <mt:IfStraightSearch> 123 <__trans phrase="Results matching “[_1]”" params="<$mt:SearchString$>"> 124 </mt:IfStraightSearch> 125 <mt:IfTagSearch> 126 <__trans phrase="Results tagged “[_1]”" params="<$mt:SearchString$>"> 127 </mt:IfTagSearch> 128 128 </h1> 129 <p><__trans phrase="No results found for “[_1]”." params="<$ MTSearchString$>"></p>130 </ MTNoSearchResults>129 <p><__trans phrase="No results found for “[_1]”." params="<$mt:SearchString$>"></p> 130 </mt:NoSearchResults> 131 131 132 132 133 <mt: ignore><!-- Display instructions for searching if search script was accessed without a query --></mt:ignore>134 < MTNoSearch>133 <mt:Ignore><!-- Display instructions for searching if search script was accessed without a query --></mt:Ignore> 134 <mt:NoSearch> 135 135 <h1 id="page-title" class="search-results-header"><__trans phrase="Instructions"></h1> 136 136 <p><__trans phrase="By default, this search engine looks for all words in any order. To search for an exact phrase, enclose the phrase in quotes:"></p> … … 143 143 <p><code><__trans phrase="publishing NOT personal"></code></p> 144 144 </blockquote> 145 </ MTNoSearch>145 </mt:NoSearch> 146 146 147 < MTIgnore><!-- Used with the ajax search capability of the new search class --></MTIgnore>148 < MTIfMoreResults>147 <mt:Ignore><!-- Used with the ajax search capability of the new search class --></mt:Ignore> 148 <mt:IfMoreResults> 149 149 <script type="text/javascript"> 150 150 <!-- 151 151 var div = document.getElementById('search-results'); 152 152 var results = { 153 '< MTCurrentPage>': {153 '<$mt:CurrentPage$>': { 154 154 'content': div.innerHTML, 155 'next_url': '< MTNextLink>'155 'next_url': '<$mt:NextLink$>' 156 156 } 157 157 }; 158 var timer = window.setTimeout("getResults(" + < MTCurrentPage> + ")", 1*1000);158 var timer = window.setTimeout("getResults(" + <$mt:CurrentPage$> + ")", 1*1000); 159 159 //--> 160 160 </script> 161 </ MTIfMoreResults>161 </mt:IfMoreResults> 162 162 163 163 … … 165 165 </div> 166 166 167 <$ MTInclude module="<__trans phrase="Sidebar">"$>167 <$mt:Include module="<__trans phrase="Sidebar">"$> 168 168 169 169 … … 172 172 173 173 174 <$mt: include module="<__trans phrase="Banner Footer">"$>174 <$mt:Include module="<__trans phrase="Banner Footer">"$> 175 175 176 176 -
branches/release-40/default_templates/sidebar.mtml
r1709 r2603 1 <mt: ignore><!--1 <mt:Ignore><!-- 2 2 # 3 3 # The sidebar is made up of one or two columns. … … 5 5 # For 3-column designs, beta and gamma. 6 6 # 7 --></mt: ignore>7 --></mt:Ignore> 8 8 9 9 … … 11 11 <div id="beta-inner"> 12 12 13 <mt: if name="page_columns" eq="2">14 <mt: ignore><!-- Use the 2-column layout Sidebar if page layout is layout-wt or layout-tw. --></mt:ignore>13 <mt:If name="page_columns" eq="2"> 14 <mt:Ignore><!-- Use the 2-column layout Sidebar if page layout is layout-wt or layout-tw. --></mt:Ignore> 15 15 <$mt:WidgetSet name="<__trans phrase="2-column layout - Sidebar">"$> 16 <mt: else name="page_columns" eq="3">17 <mt: ignore><!-- Use the 3-column layout Primary Sidebar if page layout is layout-wtt or layout-twt. --></mt:ignore>16 <mt:Else name="page_columns" eq="3"> 17 <mt:Ignore><!-- Use the 3-column layout Primary Sidebar if page layout is layout-wtt or layout-twt. --></mt:Ignore> 18 18 <$mt:WidgetSet name="<__trans phrase="3-column layout - Primary Sidebar">"$> 19 </mt: if>19 </mt:If> 20 20 21 21 </div> … … 23 23 24 24 25 <mt: if name="page_columns" eq="3">26 <mt: ignore><!-- Use the 3-column layout Secondary Sidebar if page layout is layout-wtt or layout-twt. --></mt:ignore>25 <mt:If name="page_columns" eq="3"> 26 <mt:Ignore><!-- Use the 3-column layout Secondary Sidebar if page layout is layout-wtt or layout-twt. --></mt:Ignore> 27 27 <div id="gamma"> 28 28 <div id="gamma-inner"> … … 30 30 </div> 31 31 </div> 32 </mt: if>32 </mt:If> -
branches/release-40/default_templates/styles.mtml
r1423 r2603 1 @import url(<$ MTStaticWebPath$>themes-base/blog.css);2 @import url(<$ MTStaticWebPath$>themes/minimalist-red/screen.css);1 @import url(<$mt:StaticWebPath$>themes-base/blog.css); 2 @import url(<$mt:StaticWebPath$>themes/minimalist-red/screen.css); -
branches/release-40/default_templates/syndication.mtml
r2052 r2603 4 4 <li class="blog feed"><img src="<$mt:StaticWebPath$>images/status_icons/feed.gif" alt="<__trans phrase="Subscribe to feed">" width="9" height="9" /> <a href="<$mt:Link template="feed_recent"$>"><__trans phrase="Subscribe to this blog's feed"></a></li> 5 5 <mt:If name="search_results"> 6 <mt: ifnonempty tag="mt:SearchString">7 <li class="search-results-feed"><img src="<$mt:StaticWebPath$>images/status_icons/feed.gif" alt="<__trans phrase="Subscribe to feed">" width="9" height="9" /> <a href="<$mt:CGIPath$><$mt:SearchScript$>?<mt:IfTagSearch>tag<mt:Else>search</mt:IfTagSearch>=<$mt:SearchString encode_url="1"$>&Template=feed&IncludeBlogs=<$mt:SearchIncludeBlogs$>&limit=< MTSearchMaxResults>" title="<__trans phrase="Subscribe to feed">"><__trans phrase="Search results matching “<$mt:SearchString$>”"></a></li>8 </mt: ifnonempty>6 <mt:IfNonEmpty tag="mt:SearchString"> 7 <li class="search-results-feed"><img src="<$mt:StaticWebPath$>images/status_icons/feed.gif" alt="<__trans phrase="Subscribe to feed">" width="9" height="9" /> <a href="<$mt:CGIPath$><$mt:SearchScript$>?<mt:IfTagSearch>tag<mt:Else>search</mt:IfTagSearch>=<$mt:SearchString encode_url="1"$>&Template=feed&IncludeBlogs=<$mt:SearchIncludeBlogs$>&limit=<$mt:SearchMaxResults$>" title="<__trans phrase="Subscribe to feed">"><__trans phrase="Search results matching “<$mt:SearchString$>”"></a></li> 8 </mt:IfNonEmpty> 9 9 </mt:If> 10 10 </ul> -
branches/release-40/default_templates/tag_cloud.mtml
r2439 r2603 4 4 <ul class="widget-list"> 5 5 <mt:Tags top="20"> 6 <li class="rank-<$mt:TagRank max="10"$> widget-list-item"><a href="javascript:void(0)" onclick="location.href='<$ MTTagSearchLink encode_js="1"$>';return false;" rel="tag"><$mt:TagName$></a></li>6 <li class="rank-<$mt:TagRank max="10"$> widget-list-item"><a href="javascript:void(0)" onclick="location.href='<$mt:TagSearchLink encode_js="1"$>';return false;" rel="tag"><$mt:TagName$></a></li> 7 7 </mt:Tags> 8 8 </ul> -
branches/release-40/default_templates/trackbacks.mtml
r2383 r2603 1 <mt: ignore><!-- Display TrackBacks for the entry/page or TrackBack details if TrackBacks are being accepted --></mt:ignore>2 < MTIfPingsActive>1 <mt:Ignore><!-- Display TrackBacks for the entry/page or TrackBack details if TrackBacks are being accepted --></mt:Ignore> 2 <mt:IfPingsActive> 3 3 <div id="trackbacks" class="trackbacks"> 4 <h2 class="trackbacks-header"><$ MTEntryTrackbackCount singular="<__trans phrase="1 TrackBack">" plural="<__trans phrase="# TrackBacks">" none="<__trans phrase="No TrackBacks">"$></h2>4 <h2 class="trackbacks-header"><$mt:EntryTrackbackCount singular="<__trans phrase="1 TrackBack">" plural="<__trans phrase="# TrackBacks">" none="<__trans phrase="No TrackBacks">"$></h2> 5 5 6 <mt: ignore><!-- Display TrackBack details if TrackBacks are being accepted --></mt:ignore>7 < MTIfPingsAccepted>6 <mt:Ignore><!-- Display TrackBack details if TrackBacks are being accepted --></mt:Ignore> 7 <mt:IfPingsAccepted> 8 8 <div class="trackbacks-info"> 9 <p><__trans phrase="TrackBack URL: [_1]" params="<$ MTEntryTrackbackLink$>"></p>9 <p><__trans phrase="TrackBack URL: [_1]" params="<$mt:EntryTrackbackLink$>"></p> 10 10 </div> 11 </ MTIfPingsAccepted>11 </mt:IfPingsAccepted> 12 12 13 13 14 <mt: ignore><!-- Display TrackBacks --></mt:ignore>15 < MTPings>16 < MTPingsHeader>14 <mt:Ignore><!-- Display TrackBacks --></mt:Ignore> 15 <mt:Pings> 16 <mt:PingsHeader> 17 17 <div class="trackbacks-content"> 18 </ MTPingsHeader>19 <div class="trackback" id="ping-<$ MTPingID$>">18 </mt:PingsHeader> 19 <div class="trackback" id="ping-<$mt:PingID$>"> 20 20 <div class="inner"> 21 21 <div class="trackback-header"> 22 22 <div class="asset-meta"> 23 <__trans phrase="<a href="[_1]">[_2]</a> from [_3] on <a href="[_4]">[_5]</a>" params="<$ MTPingURL$>%%<$MTPingTitle$>%%<$MTPingBlogName$>%%#ping-<$MTPingID$>%%<$MTPingDate$>">23 <__trans phrase="<a href="[_1]">[_2]</a> from [_3] on <a href="[_4]">[_5]</a>" params="<$mt:PingURL$>%%<$mt:PingTitle$>%%<$mt:PingBlogName$>%%#ping-<$mt:PingID$>%%<$mt:PingDate$>"> 24 24 </div> 25 25 </div> 26 26 <div class="trackback-content"> 27 27 <p> 28 <__trans phrase="[_1] <a href="[_2]">Read More</a>" params="<$ MTPingExcerpt$>%%<$MTPingURL$>">28 <__trans phrase="[_1] <a href="[_2]">Read More</a>" params="<$mt:PingExcerpt$>%%<$mt:PingURL$>"> 29 29 </p> 30 30 </div> 31 31 </div> 32 32 </div> 33 < MTPingsFooter>33 <mt:PingsFooter> 34 34 </div> 35 </ MTPingsFooter>36 </ MTPings>35 </mt:PingsFooter> 36 </mt:Pings> 37 37 </div> 38 </ MTIfPingsActive>38 </mt:IfPingsActive> -
branches/release-40/default_templates/verify-subscribe.mtml
r1102 r2603 1 <__trans phrase="Thanks for subscribing to notifications about updates to [_1]. Follow the link below to confirm your subscription:" params="<$ MTBlogName$>">1 <__trans phrase="Thanks for subscribing to notifications about updates to [_1]. Follow the link below to confirm your subscription:" params="<$mt:BlogName$>"> 2 2 3 < mt:var name="script_path">?__mode=confirm;email=<mt:var name="email" escape="url">;magic=<mt:var name="magic" escape="url">;blog_id=<$MTBlogID$><mt:if name="redirect_url">;redirect=<mt:var name="redirect_url" escape="url"><mt:else><mt:if name="entry">;entry_id=<$MTEntryID$></mt:if></mt:if>3 <$mt:Var name="script_path"$>?__mode=confirm;email=<$mt:Var name="email" escape="url"$>;magic=<$mt:Var name="magic" escape="url"$>;blog_id=<$mt:BlogID$><mt:If name="redirect_url">;redirect=<$mt:Var name="redirect_url" escape="url"$><mt:Else><mt:If name="entry">;entry_id=<$mt:EntryID$></mt:If></mt:If> 4 4 5 5 <__trans phrase="If the link is not clickable, just copy and paste it into your browser."> 6 6 7 < mt:include module="<__trans phrase="Mail Footer">">7 <$mt:Include module="<__trans phrase="Mail Footer">"$>
