Dotclear

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

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

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

Line 
1<!DOCTYPE html>
2<html lang="{{tpl:BlogLanguage}}">
3<head>
4     <tpl:Block name="html-head">
5          <meta charset="UTF-8" />
6
7          <tpl:Block name="head-title">
8               <title>{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title>
9          </tpl:Block>   <!-- head-title -->
10
11          <tpl:Block name="head-meta">
12               <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
13               <tpl:Block name="meta-robots">
14                    <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
15               </tpl:Block>   <!-- meta-robots -->
16               <tpl:Block name="meta-entry">
17                    <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription cut_string="180" remove_html="1" encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
18                    <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
19                    <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
20               </tpl:Block>   <!-- meta-entry -->
21          </tpl:Block>   <!-- head-meta -->
22
23          <tpl:Block name="head-linkrel">
24               <link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" />
25               <tpl:Categories>
26                    <link rel="section" href="{{tpl:CategoryURL}}" title="{{tpl:CategoryTitle encode_html="1"}}" />
27               </tpl:Categories>
28
29               <tpl:Entries no_content="1">
30                    <tpl:EntriesHeader>
31                         <tpl:Pagination>
32                              <tpl:PaginationIf end="0">
33                                   <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
34                              </tpl:PaginationIf>
35
36                              <tpl:PaginationIf start="0">
37                                   <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
38                              </tpl:PaginationIf>
39                         </tpl:Pagination>
40                    </tpl:EntriesHeader>
41
42                    <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
43               </tpl:Entries>
44
45               <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
46               <link rel="EditURI" type="application/rsd+xml" title="RSD" href="{{tpl:BlogRSDURL}}" />
47               <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
48          </tpl:Block>   <!-- head-linkrel -->
49
50          {{tpl:include src="_head.html"}}
51     </tpl:Block>   <!-- html-head -->
52</head>
53<tpl:Block name="body-tag">
54     <body class="dc-home">
55</tpl:Block>
56     <tpl:Block name="html-body">
57          <div id="page">
58               <tpl:Block name="body-page">
59                    <tpl:Block name="page-top">
60                         {{tpl:include src="_top.html"}}
61                    </tpl:Block>   <!-- page-top -->
62
63                    <div id="wrapper">
64                         <tpl:Block name="page-wrapper">
65                              <div id="main" role="main">
66                                   <tpl:Block name="wrapper-main">
67                                        <tpl:Block name="main-breadcrumb">
68                                             {{tpl:Breadcrumb}}
69                                        </tpl:Block>
70                                        <div id="content">
71                                             <tpl:Block name="main-content">
72                                                  <tpl:Entries>
73                                                       <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article">
74                                                       <!-- # New day date -->
75                                                       <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
76
77                                                       <h2 class="post-title"><a href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2>
78
79                                                       <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
80                                                       {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
81                                                       <tpl:EntryIf has_category="1">
82                                                       - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a>
83                                                       </tpl:EntryIf>
84                                                       </p>
85
86                                                       <tpl:EntryTags>
87                                                       <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader>
88                                                       <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li>
89                                                       <tpl:TagsFooter></ul></tpl:TagsFooter>
90                                                       </tpl:EntryTags>
91
92                                                       <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
93                                                       {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
94
95                                                       <!-- # Entry with an excerpt -->
96                                                       <tpl:EntryIf extended="1">
97                                                            <div class="post-content">{{tpl:EntryExcerpt}}</div>
98                                                            <p class="read-it"><a href="{{tpl:EntryURL}}"
99                                                            title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
100                                                            reading}}</a><span class="readmore-ellipsis">...</span></p>
101                                                       </tpl:EntryIf>
102
103                                                       <!-- # Entry without excerpt -->
104                                                       <tpl:EntryIf extended="0">
105                                                            <div class="post-content">{{tpl:EntryContent}}</div>
106                                                       </tpl:EntryIf>
107
108                                                       <!-- # --BEHAVIOR-- publicEntryAfterContent -->
109                                                       {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
110
111                                                       <!-- # Number of comments, trackbacks and attachments -->
112                                                       <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
113                                                            <p class="post-info-co">
114                                                       </tpl:EntryIf>
115                                                       <tpl:EntryIf show_comments="1">
116                                                            <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
117                                                       </tpl:EntryIf>
118                                                       <tpl:EntryIf show_pings="1">
119                                                            <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
120                                                       <tpl:EntryIf has_attachment="1">
121                                                            <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
122                                                       <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
123                                                            </p>
124                                                       </tpl:EntryIf>
125                                                       </div>
126
127                                                       <tpl:EntriesFooter>
128                                                            <tpl:Pagination>
129                                                                 <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
130                                                                 {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
131                                                                 {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
132                                                                 <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
133                                                                 &#187;</a></tpl:PaginationIf></p>
134                                                            </tpl:Pagination>
135                                                       </tpl:EntriesFooter>
136                                                  </tpl:Entries>
137                                             </tpl:Block>   <!-- main-content -->
138                                        </div> <!-- End #content -->
139                                   </tpl:Block>   <!-- wrapper-main -->
140                              </div> <!-- End #main -->
141
142                              <tpl:Block name="wrapper-sidebar">
143                                   <div id="sidebar" role="complementary">
144                                        <div id="blognav">
145                                             {{tpl:Widgets type="nav"}}
146                                        </div> <!-- End #blognav -->
147                                        <div id="blogextra">
148                                             {{tpl:Widgets type="extra"}}
149                                        </div> <!-- End #blogextra -->
150                                   </div>
151                              </tpl:Block>   <!-- wrapper-sidebar -->
152                         </tpl:Block>   <!-- page-wrapper -->
153                    </div> <!-- End #wrapper -->
154
155                    <tpl:Block name="page-footer">
156                         {{tpl:include src="_footer.html"}}
157                    </tpl:Block>   <!-- page-footer -->
158               </tpl:Block>   <!-- body-page -->
159          </div> <!-- End #page -->
160     </tpl:Block>   <!-- html-body -->
161</body>
162</html>
Note: See TracBrowser for help on using the repository browser.

Sites map