Dotclear

source: inc/public/default-templates/mustek/post.html @ 3371:e723ede3c238

Revision 3371:e723ede3c238, 8.6 KB checked in by franck <carnet.franck.paul@…>, 9 years ago (diff)

Bye bye Dublin-Core metadata in <head>, closes #2074

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

Sites map