Dotclear

source: themes/dc2smartphone/tpl/post.html @ 3167

Revision 3167, 11.4 KB checked in by brol, 10 years ago (diff)

version 1.3

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  <tpl:EntryNext><link rel="next" href="{{tpl:EntryURL}}"
29  title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryNext>
30 
31  <tpl:EntryPrevious><link rel="prev" href="{{tpl:EntryURL}}"
32  title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryPrevious>
33 
34  <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
35 
36  {{tpl:include src="_head.html"}}
37 
38  <script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/post.js"></script>
39  <script type="text/javascript">
40  //<![CDATA[
41  var post_remember_str = '{{tpl:lang Remember me on this blog}}';
42  //]]>
43  </script>
44</head>
45
46<body class="dc-post" onload="window.scrollTo(0, 1)">
47<div id="page">
48{{tpl:EntryPingData}}
49
50{{tpl:include src="_top.html"}}
51
52<div id="wrapper">
53
54<div id="main">
55  <div id="content">
56 
57    <div class="post">
58
59  <!-- # navigation dans la catégorie -->
60    <p id="navincat">
61    {{tpl:lang Browse the category}}<br />
62          <tpl:EntryPrevious restrict_to_category="1"><span class="prev">&#171; <a href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}">{{tpl:EntryTitle encode_html="1" cut_string="16"}} ...</a></span></tpl:EntryPrevious>
63          <tpl:EntryNext restrict_to_category="1"><span class="next"><a href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}">{{tpl:EntryTitle encode_html="1"cut_string="16"}} ...</a> &#187;</span></tpl:EntryNext>
64       <br style="clear:both" />
65     </p>
66     
67    <h2 id="p{{tpl:EntryID}}" class="post-title">{{tpl:EntryTitle encode_html="1"}}</h2>
68   
69    <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}},
70    {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
71    </p>
72   
73    <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
74    {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
75   
76    <!-- # Entry with an excerpt -->
77    <tpl:EntryIf extended="1">
78      <div class="post-excerpt">{{tpl:EntryExcerpt}}</div>
79    </tpl:EntryIf>
80   
81    <div class="post-content">{{tpl:EntryContent}}</div>
82   
83    <!-- # --BEHAVIOR-- publicEntryAfterContent -->
84    {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
85  </div>
86 
87  <!-- # Attachments -->
88  <tpl:Attachments>
89    <tpl:AttachmentsHeader>
90      <div id="attachments">
91      <h3>{{tpl:lang Attachments}}</h3>
92      <ul>
93    </tpl:AttachmentsHeader>
94      <li class="{{tpl:AttachmentType}}">
95        <tpl:AttachmentIf is_mp3="1">
96          {{tpl:include src="_mp3_player.html"/}} -
97        </tpl:AttachmentIf>
98        <tpl:AttachmentIf is_flv="1">
99          {{tpl:include src="_flv_player.html"/}}
100        </tpl:AttachmentIf>
101        <tpl:AttachmentIf is_flv="0">
102          <a href="{{tpl:AttachmentURL}}"
103          title="{{tpl:AttachmentFileName}} ({{tpl:AttachmentSize}})">{{tpl:AttachmentTitle}}</a>
104        </tpl:AttachmentIf>
105      </li>
106    <tpl:AttachmentsFooter>
107      </ul>
108      </div>
109    </tpl:AttachmentsFooter>
110  </tpl:Attachments>
111 
112  <p id="post-rss">{{tpl:lang You liked this ticket? You can subscribe to}} <a href="{{tpl:BlogFeedURL}}" title="{{tpl:lang entries feed of this blog}}">{{tpl:lang entries feed of this blog}}</a>, {{tpl:lang thus you will be automatically informed of all new ticket!}}<br />{{tpl:lang You do not know what is a flow RSS.}} <a href="http://www.youtube.com/watch?v=240u_FoIHc8" title="{{tpl:lang French video explanatory of the interest of flows RSS}}">{{tpl:lang View a video explanatory}}...</a></p>
113     
114  <div id="infosbillet">
115     <h3>{{tpl:lang Informations on the ticket}}</h3>
116     <ul>
117       <!-- # cat -->   
118    <tpl:EntryIf has_category="1"><li id="cat"><strong>{{tpl:lang Category:}}</strong> <tpl:EntryCategoriesBreadcrumb><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a> &rsaquo; </tpl:EntryCategoriesBreadcrumb><a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a></li></tpl:EntryIf>
119          <!-- # meta -->
120    <tpl:EntryTags>
121            <tpl:TagsHeader><li id="post-tags"><strong>{{tpl:lang Tags:}}</strong></tpl:TagsHeader>
122        <a class="aposttags" href="{{tpl:TagURL}}">{{tpl:TagID}}</a><tpl:LoopPosition start="1" length="-1">, </tpl:LoopPosition>
123            <tpl:TagsFooter></li></tpl:TagsFooter>
124          </tpl:EntryTags>
125   
126    <li id="permalien"><a href="{{tpl:EntryURL}}"><strong>{{tpl:lang Permalink}}</strong></a> {{tpl:lang of the ticket}}</li>
127    <tpl:EntryIf pings_active="1">   
128          <li id="pingurl">{{tpl:lang To make a}} <a href="{{tpl:EntryPingLink}}" title="{{tpl:lang Trackback URL}}&nbsp;: {{tpl:EntryTitle encode_html="1"}}"><strong>{{tpl:lang trackback}}</strong></a> {{tpl:lang on this ticket}}</li>
129    </tpl:EntryIf>
130    <tpl:EntryIf comments_active="1">
131    <li id="comments-feed"><a class="feedco" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}" title="{{tpl:lang This post's comments Atom feed}}"><strong>{{tpl:lang This post's comments feed}}</strong></a></li>
132    </tpl:EntryIf>
133    </ul>
134
135  </div>
136 
137  <!-- # Trackbacks -->
138  <tpl:EntryIf show_pings="1">
139    <div id="pings">
140    <h3>{{tpl:lang They posted on the same topic}}</h3>
141    <tpl:Pings>
142      <tpl:PingsHeader>
143      <dl>
144      </tpl:PingsHeader>
145        <dt id="c{{tpl:PingID}}" class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"><a href="#c{{tpl:PingID}}"
146        class="ping-number">{{tpl:PingOrderNumber}}.</a>
147        {{tpl:lang On}} {{tpl:PingDate}}, {{tpl:PingTime}}
148        {{tpl:lang by}} {{tpl:PingBlogName encode_html="1"}}</dt>
149       
150        <dd class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}">
151        <!-- # --BEHAVIOR-- publicPingBeforeContent -->
152        {{tpl:SysBehavior behavior="publicPingBeforeContent"}}
153       
154        <p><a href="{{tpl:PingAuthorURL}}"
155        {{tpl:PingNoFollow}}>{{tpl:PingTitle encode_html="1"}}</a></p>
156        {{tpl:PingContent}}
157       
158        <!-- # --BEHAVIOR-- publicPingAfterContent -->
159        {{tpl:SysBehavior behavior="publicPingAfterContent"}}
160        </dd>
161      <tpl:PingsFooter>
162      </dl>
163      </tpl:PingsFooter>
164    </tpl:Pings>
165    </div>
166  </tpl:EntryIf>
167 
168  <!-- # Comments -->
169  <tpl:EntryIf show_comments="1">
170  <div id="comments">
171    <h3>{{tpl:lang Comments}}</h3>
172    <tpl:Comments>
173    <tpl:CommentsHeader>
174      <dl>
175    </tpl:CommentsHeader>
176      <dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
177      <a href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
178      {{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}} {{tpl:lang by}} {{tpl:CommentAuthorLink}}</dt>
179     
180      <dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
181      <!-- # --BEHAVIOR-- publicCommentBeforeContent -->
182      {{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
183     
184      {{tpl:CommentContent}}
185     
186      <!-- # --BEHAVIOR-- publicCommentAfterContent -->
187      {{tpl:SysBehavior behavior="publicCommentAfterContent"}}
188      </dd>
189    <tpl:CommentsFooter>
190      </dl>
191    </tpl:CommentsFooter>
192    </tpl:Comments>
193  </div>
194  </tpl:EntryIf>
195 
196  <tpl:EntryIf comments_active="1">   
197    <tpl:SysIfFormError>
198      <p class="error" id="pr">{{tpl:SysFormError}}</p>
199    </tpl:SysIfFormError>
200   
201    <tpl:SysIfCommentPublished>
202      <p class="message" id="pr">{{tpl:lang Your comment has been published.}}</p>
203    </tpl:SysIfCommentPublished>
204   
205    <tpl:SysIfCommentPending>
206      <p class="message" id="pr">{{tpl:lang Your comment has been submitted and
207      will be reviewed for publication.}}</p>
208    </tpl:SysIfCommentPending>
209   
210    <!-- # Comment form -->
211    <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form">
212      <tpl:IfCommentPreview>
213        <div id="pr">
214          <h3>{{tpl:lang Your comment}}</h3>
215          <dl>
216            <dd class="comment-preview">{{tpl:CommentPreviewContent}}</dd>
217          </dl>
218          <p class="buttons"><input type="submit" class="submit" value="{{tpl:lang send}}" /></p>
219        </div>
220      </tpl:IfCommentPreview>
221     
222      <h3>{{tpl:lang Add a comment}}</h3>
223      <fieldset>
224        <!-- # --BEHAVIOR-- publicCommentFormBeforeContent -->
225        {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}}
226       
227        <p class="field"><label for="c_name">{{tpl:lang Name or nickname}}&nbsp;:</label>
228        <input name="c_name" id="c_name" type="text" size="30" maxlength="255"
229        value="{{tpl:CommentPreviewName encode_html="1"}}" />
230        </p>
231       
232        <p class="field"><label for="c_mail">{{tpl:lang Email address}}&nbsp;:</label>
233        <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255"
234        value="{{tpl:CommentPreviewEmail encode_html="1"}}" />
235        </p>
236       
237        <p class="field"><label for="c_site">{{tpl:lang Website}}
238        ({{tpl:lang optional}})&nbsp;:</label>
239        <input name="c_site" id="c_site" type="text" size="30" maxlength="255"
240        value="{{tpl:CommentPreviewSite encode_html="1"}}" />
241        </p>
242       
243        <p style="display:none"><input name="f_mail" type="text" size="30"
244        maxlength="255" value="" /></p>
245       
246        <p class="field"><label for="c_content">{{tpl:lang Comment}}&nbsp;:</label>
247        <textarea name="c_content" id="c_content" cols="35"
248        rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea>
249        </p>
250        <p class="form-help">{{tpl:CommentHelp}}</p>
251       
252        <!-- # --BEHAVIOR-- publicCommentFormAfterContent -->
253        {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}}
254      </fieldset>
255     
256      <fieldset>
257        <p class="buttons">
258        <input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" />
259        <input type="submit" class="submit" value="{{tpl:lang send}}" />
260        </p>
261      </fieldset>
262    </form>
263  </tpl:EntryIf>
264 
265  </div>
266</div> <!-- End #main -->
267
268</div> <!-- End #wrapper -->
269
270{{tpl:include src="_footer.html"}}
271</div> <!-- End #page -->
272</body>
273</html>
Note: See TracBrowser for help on using the repository browser.

Sites map