Dotclear

source: plugins/pages/default-templates/page.html @ 0:54703be25dd6

Revision 0:54703be25dd6, 9.2 KB checked in by Dsls <dsls@…>, 14 years ago (diff)

2.3 branch (trunk) first checkin

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

Sites map