Dotclear

source: themes/walouwalou/tpl/page.html @ 1990

Revision 1990, 10.6 KB checked in by Osku, 13 years ago (diff)

Theme Walou-Walou 0.3

  • new option to show gravatar in post.html & page.html
  • new CSS 3 tricks
  • update font to a serif set
  • ...
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:EntryLang}}" lang="{{tpl:EntryLang}}">
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
43{{tpl:EntryPingData}}
44
45<div id="wrapper-top" class="container_12" >
46{{tpl:include src="_top.html"}}
47</div>
48<div id="wrapper">
49<div id="wrapper-page" class="container_12 " >
50 <div id="wrapper-title" class="grid_12" >  <h1>{{tpl:EntryTitle encode_html="1"}}</h1></div>
51<div id="main" class="grid_9" >
52  <div id="content">
53  <div id="p{{tpl:EntryID}}" class="post">
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   
64    <!-- # --BEHAVIOR-- publicEntryAfterContent -->
65    {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
66  </div>
67 
68 <!-- # Attachments -->
69  <tpl:Attachments>
70    <tpl:AttachmentsHeader>
71      <div id="attachments">
72      <h3>{{tpl:lang Attachments}}</h3>
73      <ul>
74    </tpl:AttachmentsHeader>
75      <li class="{{tpl:AttachmentType}}">
76        <tpl:AttachmentIf is_mp3="1">
77          {{tpl:include src="_mp3_player.html"/}} -
78        </tpl:AttachmentIf>
79        <tpl:AttachmentIf is_flv="1">
80          {{tpl:include src="_flv_player.html"/}}
81        </tpl:AttachmentIf>
82        <tpl:AttachmentIf is_flv="0">
83          <a href="{{tpl:AttachmentURL}}"
84          title="{{tpl:AttachmentFileName}}">{{tpl:AttachmentTitle}}</a> ~ {{tpl:AttachmentSize}}
85        </tpl:AttachmentIf>
86      </li>
87    <tpl:AttachmentsFooter>
88      </ul>
89      </div>
90    </tpl:AttachmentsFooter>
91  </tpl:Attachments>
92 
93  <!-- # Comments -->
94         <!-- # Comments and trackbacks alltogether -->
95        <tpl:EntryIf operator="or" show_comments="1" show_pings="1">
96          <tpl:Comments with_pings="1">
97          <tpl:CommentsHeader>
98            <div id="comments">
99              <h3>{{tpl:lang Comments}}</h3>
100          </tpl:CommentsHeader>
101            <div id="c{{tpl:CommentID}}" class="meta {{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst return="one"}} grid_2 alpha">
102     
103            <tpl:CommentIf is_ping="0">
104          <h4 class="meta-date">{{tpl:CommentDate format="%a %d %b %Y""}}</h4>
105    <ul class="meta-info">
106     <li class="meta-time"><a href="#c{{tpl:CommentID}}">{{tpl:CommentDate format="%H:%M"}}</a></li>
107     <li class="meta-c_author {{tpl:CommentIfMe}}">{{tpl:CommentAuthorLink}}</li>
108     <tpl:WalouGravatarOn>
109     <li class="meta-gravatar"><img alt="Gravatar {{tpl:lang of}} {{tpl:CommentAuthor}}" title="Gravatar {{tpl:lang of}} {{tpl:CommentAuthor}}" width="32" height="32" src="http://www.gravatar.com/avatar/{{tpl:CommentAuthorMailMD5}}?d={{tpl:WalouSysHost}}{{tpl:BlogThemeURL encode_xml="1"}}%2Fimg%2Fuser-offline.png?s=32" /></li>
110     </tpl:WalouGravatarOn>
111</ul>
112            </div>
113              <div class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst return="one"}} c-content grid_7 omega">
114                <!-- # --BEHAVIOR-- publicCommentBeforeContent -->
115          <div class="c-content-text" >
116                {{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
117               
118                {{tpl:CommentContent}}
119               
120                <!-- # --BEHAVIOR-- publicCommentAfterContent -->
121                {{tpl:SysBehavior behavior="publicCommentAfterContent"}}
122               </div>               
123              </div>
124            </tpl:CommentIf>
125           
126            <tpl:CommentIf is_ping="1">
127          <h4 class="meta-date">{{tpl:CommentDate format="%a %d %b %Y""}}</h4>
128    <ul class="meta-info">
129     <li class="meta-time"><a href="#c{{tpl:CommentID}}">{{tpl:CommentDate format="%H:%M"}}</a></li>
130     <li class="meta-ping {{tpl:CommentIfMe}}">{{tpl:CommentAuthor}}</li>
131</ul>
132            </div>
133              <div class="ping {{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst return="one"}} p-content grid_7 omega">
134                <!-- # --BEHAVIOR-- publicPingBeforeContent -->
135          <div class="p-content-text" >
136          <h4 class="p-author"><a href="{{tpl:PingAuthorURL}}"
137                {{tpl:PingNoFollow}}>{{tpl:PingTitle encode_html="1"}}</a></h4>
138         
139                {{tpl:SysBehavior behavior="publicPingBeforeContent"}}
140               
141                {{tpl:PingContent}}
142               
143                <!-- # --BEHAVIOR-- publicPingAfterContent -->
144                {{tpl:SysBehavior behavior="publicPingAfterContent"}}
145                        </div>
146              </div>
147            </tpl:CommentIf>
148
149          <tpl:CommentsFooter>
150            </div>
151          </tpl:CommentsFooter>
152          </tpl:Comments>
153        </tpl:EntryIf>
154 
155  <tpl:EntryIf comments_active="1">   
156    <tpl:SysIfFormError>
157      <p class="error" id="pr">{{tpl:SysFormError}}</p>
158    </tpl:SysIfFormError>
159   
160    <tpl:SysIfCommentPublished>
161      <p class="message" id="pr">{{tpl:lang Your comment has been published.}}</p>
162    </tpl:SysIfCommentPublished>
163   
164    <tpl:SysIfCommentPending>
165      <p class="message" id="pr">{{tpl:lang Your comment has been submitted and
166      will be reviewed for publication.}}</p>
167    </tpl:SysIfCommentPending>
168   
169    <!-- # Comment form -->
170    <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form" class="alpha grid_9">
171      <tpl:IfCommentPreview>
172        <div id="pr">
173          <h4 class="grid_2 alpha">{{tpl:lang Your comment}}</h4>
174
175            <div class="comment-preview grid_7 omega">{{tpl:CommentPreviewContent}}</div>
176
177          <p class="buttons grid_9"><input type="submit" class="submit" value="{{tpl:lang send}}" /></p>
178        </div>
179      </tpl:IfCommentPreview>
180     
181      <h3>{{tpl:lang Add a comment}}</h3>
182      <fieldset>
183        <!-- # --BEHAVIOR-- publicCommentFormBeforeContent -->
184        {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}}
185
186        <p class="field grid_9 alpha omega"><label for="c_content">{{tpl:lang Comment}}&nbsp;:</label>
187        <textarea name="c_content" id="c_content" cols="35"
188        rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea>
189        </p>
190 
191        <p class="field grid_3 alpha"><label for="c_name">{{tpl:lang Name or nickname}}&nbsp;:</label>
192        <input name="c_name" id="c_name" type="text" size="30" maxlength="255"
193        value="{{tpl:CommentPreviewName encode_html="1"}}" />
194        </p>
195       
196        <p class="field grid_3"><label for="c_mail">{{tpl:lang Email address}}&nbsp;:</label>
197        <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255"
198        value="{{tpl:CommentPreviewEmail encode_html="1"}}" />
199        </p>
200       
201        <p class="field grid_3 omega"><label for="c_site">{{tpl:lang Website}}
202        ({{tpl:lang optional}})&nbsp;:</label>
203        <input name="c_site" id="c_site" type="text" size="30" maxlength="255"
204        value="{{tpl:CommentPreviewSite encode_html="1"}}" />
205        </p>
206       
207        <p style="display:none"><input name="f_mail" type="text" size="30"
208        maxlength="255" value="" /></p>
209
210        <p class="field grid_9 alpha omega">{{tpl:lang HTML code is displayed as text and web addresses are
211        automatically converted.}}</p>
212   
213
214       
215        <!-- # --BEHAVIOR-- publicCommentFormAfterContent -->
216        {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}}
217
218        <p class="buttons"><input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" />
219        <tpl:IfCommentPreview><input type="submit" class="submit" value="{{tpl:lang send}}" /></tpl:IfCommentPreview></p>
220      </fieldset>
221    </form>
222  </tpl:EntryIf>
223  </div>
224</div> <!-- End #main -->
225
226<div id="sidebar" class="grid_3 ">
227
228    <div id="post-meta" class="meta grid_3 alpha omega">
229     <h4 class="meta-date">{{tpl:EntryDate format="%a %d %b %Y"}}</h4>
230    <ul class="meta-info">
231     <li class="meta-link"><a href="{{tpl:EntryURL}}">{{tpl:lang Permalink}}</a></li>
232     <li class="meta-author">{{tpl:EntryAuthorLink}}</li>
233
234      <tpl:EntryIf pings_active="1">
235<li class="meta-ping"><a class="ping" href="{{tpl:EntryPingLink}}">{{tpl:lang Trackback URL}}</a></li>
236  </tpl:EntryIf>
237 
238  <tpl:EntryIf operator="or" comments_active="1" pings_active="1">
239<li class="meta-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}">{{tpl:lang This post's comments Atom feed}}</a></li>
240  </tpl:EntryIf>
241
242
243
244      </ul>
245</div>
246  <div id="blognav" class="grid_3 alpha omega ">
247    {{tpl:Widgets type="nav"}}
248  </div> <!-- End #blognav -->
249 
250  <div id="blogextra" class="grid_3 alpha omega ">
251    {{tpl:Widgets type="extra"}}
252  </div> <!-- End #blogextra -->
253</div>
254
255</div> <!-- End #wrapper -->
256</div>
257<div id="wrapper-bottom">
258
259{{tpl:include src="_footer.html"}}
260</div><!-- End #wrapper-bottom -->
261
262</body>
263</html>
Note: See TracBrowser for help on using the repository browser.

Sites map