Dotclear

source: plugins/pages/default-templates/page.html @ 199:d1538efa6724

Revision 199:d1538efa6724, 9.2 KB checked in by Franck <carnet.franck.paul@…>, 14 years ago (diff)

Suppression de <meta name="MSSmartTagsPreventParsing" content="TRUE" /> dans le head
Ne sert strictement à plus rien du tout du tout
Fix #963 (http://dev.dotclear.org/2.0/ticket/963)

Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
4<head>
5  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
7 
8  <title>{{tpl:EntryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}</title>
9  <meta name="description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" />
10  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
11  <meta name="author" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" />
12  <meta name="date" scheme="W3CDTF" content="{{tpl:EntryDate iso8601="1"}}" />
13 
14  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
15  <meta name="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" />
16  <meta name="dc.description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" />
17  <meta name="dc.creator" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" />
18  <meta name="dc.language" content="{{tpl:EntryLang}}" />
19  <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
20  <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
21  <meta name="dc.date" scheme="W3CDTF" content="{{tpl:EntryDate iso8601="1"}}" />
22  <meta name="dc.type" content="text" />
23  <meta name="dc.format" content="text/html" />
24 
25  <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
26  <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
27 
28  <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
29 
30  {{tpl:include src="_head.html"}}
31 
32  <script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/post.js"></script>
33  <script type="text/javascript">
34  //<![CDATA[
35  var post_remember_str = '{{tpl:lang Remember me on this blog}}';
36  //]]>
37  </script>
38</head>
39
40<body class="dc-page">
41<div id="page">
42{{tpl:EntryPingData}}
43
44{{tpl:include src="_top.html"}}
45
46<div id="wrapper">
47
48<div id="main">
49  <div id="content">
50 
51  <div id="p{{tpl:EntryID}}" class="post">
52    <h2 class="post-title">{{tpl:EntryTitle encode_html="1"}}</h2>
53   
54    <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
55    {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
56   
57    <tpl:EntryIf extended="1">
58      <div class="post-excerpt">{{tpl:EntryExcerpt}}</div>
59    </tpl:EntryIf>
60    <div class="post-content">{{tpl:EntryContent}}</div>
61   
62    <p class="page-info">{{tpl:lang Published on}} {{tpl:EntryDate}}
63    {{tpl:lang by}} {{tpl:EntryAuthorLink}}</p>
64   
65    <!-- # --BEHAVIOR-- publicEntryAfterContent -->
66    {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
67  </div>
68 
69  <!-- # Attachments -->
70  <tpl:Attachments>
71    <tpl:AttachmentsHeader>
72      <div id="attachments">
73      <h3>{{tpl:lang Attachments}}</h3>
74      <ul>
75    </tpl:AttachmentsHeader>
76      <li class="{{tpl:AttachmentType}}">
77        <tpl:AttachmentIf is_mp3="1">
78          {{tpl:include src="_mp3_player.html"/}} -
79        </tpl:AttachmentIf>
80        <tpl:AttachmentIf is_flv="1">
81          {{tpl:include src="_flv_player.html"/}}
82        </tpl:AttachmentIf>
83        <tpl:AttachmentIf is_flv="0">
84          <a href="{{tpl:AttachmentURL}}"
85          title="{{tpl:AttachmentFileName}} ({{tpl:AttachmentSize}})">{{tpl:AttachmentTitle}}</a>
86        </tpl:AttachmentIf>
87      </li>
88    <tpl:AttachmentsFooter>
89      </ul>
90      </div>
91    </tpl:AttachmentsFooter>
92  </tpl:Attachments>
93 
94  <!-- # Comments -->
95  <tpl:EntryIf show_comments="1">
96    <tpl:Comments>
97    <tpl:CommentsHeader>
98    <div id="comments">
99      <h3>{{tpl:lang Comments}}</h3>
100      <dl>
101    </tpl:CommentsHeader>
102      <dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"><a
103      href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
104      {{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}}
105      {{tpl:lang by}} {{tpl:CommentAuthorLink}}</dt>
106     
107      <dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
108      <!-- # --BEHAVIOR-- publicCommentBeforeContent -->
109      {{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
110     
111      {{tpl:CommentContent}}
112     
113      <!-- # --BEHAVIOR-- publicCommentAfterContent -->
114      {{tpl:SysBehavior behavior="publicCommentAfterContent"}}
115      </dd>
116    <tpl:CommentsFooter>
117      </dl>
118    </div>
119    </tpl:CommentsFooter>
120    </tpl:Comments>
121  </tpl:EntryIf>
122 
123  <tpl:EntryIf comments_active="1">   
124    <tpl:SysIfFormError>
125      <p class="error" id="pr">{{tpl:SysFormError}}</p>
126    </tpl:SysIfFormError>
127   
128    <tpl:SysIfCommentPublished>
129      <p class="message" id="pr">{{tpl:lang Your comment has been published.}}</p>
130    </tpl:SysIfCommentPublished>
131   
132    <tpl:SysIfCommentPending>
133      <p class="message" id="pr">{{tpl:lang Your comment has been submitted and
134      will be reviewed for publication.}}</p>
135    </tpl:SysIfCommentPending>
136   
137    <!-- # Comment form -->
138    <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form">
139      <tpl:IfCommentPreview>
140        <div id="pr">
141          <h3>{{tpl:lang Your comment}}</h3>
142          <dl>
143            <dd class="comment-preview">{{tpl:CommentPreviewContent}}</dd>
144          </dl>
145          <p class="buttons"><input type="submit" class="submit" value="{{tpl:lang send}}" /></p>
146        </div>
147      </tpl:IfCommentPreview>
148     
149      <h3>{{tpl:lang Add a comment}}</h3>
150      <fieldset>
151        <!-- # --BEHAVIOR-- publicCommentFormBeforeContent -->
152        {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}}
153       
154        <p class="field"><label for="c_name">{{tpl:lang Name or nickname}}&nbsp;:</label>
155        <input name="c_name" id="c_name" type="text" size="30" maxlength="255"
156        value="{{tpl:CommentPreviewName encode_html="1"}}" />
157        </p>
158       
159        <p class="field"><label for="c_mail">{{tpl:lang Email address}}&nbsp;:</label>
160        <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255"
161        value="{{tpl:CommentPreviewEmail encode_html="1"}}" />
162        </p>
163       
164        <p class="field"><label for="c_site">{{tpl:lang Website}}
165        ({{tpl:lang optional}})&nbsp;:</label>
166        <input name="c_site" id="c_site" type="text" size="30" maxlength="255"
167        value="{{tpl:CommentPreviewSite encode_html="1"}}" />
168        </p>
169       
170        <p style="display:none"><input name="f_mail" type="text" size="30"
171        maxlength="255" value="" /></p>
172       
173        <p class="field"><label for="c_content">{{tpl:lang Comment}}&nbsp;:</label>
174        <textarea name="c_content" id="c_content" cols="35"
175        rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea>
176        </p>
177       
178        <p class="form-help">{{tpl:CommentHelp}}</p>
179       
180        <!-- # --BEHAVIOR-- publicCommentFormAfterContent -->
181        {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}}
182      </fieldset>
183     
184      <fieldset>
185        <p class="buttons"><input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" />
186        <tpl:IfCommentPreview><input type="submit" class="submit" value="{{tpl:lang send}}" /></tpl:IfCommentPreview></p>
187      </fieldset>
188    </form>
189  </tpl:EntryIf>
190 
191  <!-- # Trackbacks -->
192  <tpl:EntryIf show_pings="1">
193    <div id="pings">
194    <h3>{{tpl:lang They posted on the same topic}}</h3>
195    <tpl:Pings>
196      <tpl:PingsHeader>
197      <dl>
198      </tpl:PingsHeader>
199        <dt id="c{{tpl:PingID}}" class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"><a href="#c{{tpl:PingID}}"
200        class="ping-number">{{tpl:PingOrderNumber}}.</a>
201        {{tpl:lang On}} {{tpl:PingDate}}, {{tpl:PingTime}}
202        {{tpl:lang by}} {{tpl:PingBlogName encode_html="1"}}</dt>
203       
204        <dd class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}">
205        <!-- # --BEHAVIOR-- publicPingBeforeContent -->
206        {{tpl:SysBehavior behavior="publicPingBeforeContent"}}
207       
208        <p><a href="{{tpl:PingAuthorURL}}"
209        {{tpl:PingNoFollow}}>{{tpl:PingTitle encode_html="1"}}</a></p>
210        {{tpl:PingContent}}
211       
212        <!-- # --BEHAVIOR-- publicPingAfterContent -->
213        {{tpl:SysBehavior behavior="publicPingAfterContent"}}
214        </dd>
215      <tpl:PingsFooter>
216      </dl>
217      </tpl:PingsFooter>
218    </tpl:Pings>
219    </div>
220  </tpl:EntryIf>
221 
222  <tpl:EntryIf pings_active="1">
223    <p id="ping-url">{{tpl:lang Trackback URL}}&nbsp;: {{tpl:EntryPingLink}}</p>
224  </tpl:EntryIf>
225 
226  <tpl:EntryIf operator="or" comments_active="1" pings_active="1">
227  <p id="comments-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}"
228  title="{{tpl:lang This page's comments feed}}">{{tpl:lang This page's comments feed}}</a></p>
229  </tpl:EntryIf>
230  </div>
231</div> <!-- End #main -->
232
233<div id="sidebar">
234  <div id="blognav">
235    {{tpl:Widgets type="nav"}}
236  </div> <!-- End #blognav -->
237 
238  <div id="blogextra">
239    {{tpl:Widgets type="extra"}}
240  </div> <!-- End #blogextra -->
241</div>
242
243</div> <!-- End #wrapper -->
244
245{{tpl:include src="_footer.html"}}
246</div> <!-- End #page -->
247</body>
248</html>
Note: See TracBrowser for help on using the repository browser.

Sites map