Dotclear

source: inc/public/default-templates/currywurst/__layout.html @ 2936:6ee1f654e69b

Revision 2936:6ee1f654e69b, 4.9 KB checked in by franck <carnet.franck.paul@…>, 9 years ago (diff)

Typo

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" 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-dc">
24               <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
25               <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
26               <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
27               <meta property="dc.type" content="text" />
28               <meta property="dc.format" content="text/html" />
29               <tpl:Block name="dc-entry">
30                    <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
31                    <meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" />
32                    <meta property="dc.language" content="{{tpl:BlogLanguage}}" />
33                    <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
34               </tpl:Block>   <!-- dc-title-head -->
35          </tpl:Block>   <!-- head-dc -->
36
37          <tpl:Block name="head-linkrel">
38               <link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" />
39               <tpl:Categories>
40                    <link rel="section" href="{{tpl:CategoryURL}}" title="{{tpl:CategoryTitle encode_html="1"}}" />
41               </tpl:Categories>
42
43               <tpl:Entries no_content="1">
44                    <tpl:EntriesHeader>
45                         <tpl:Pagination>
46                              <tpl:PaginationIf end="0">
47                                   <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
48                              </tpl:PaginationIf>
49
50                              <tpl:PaginationIf start="0">
51                                   <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
52                              </tpl:PaginationIf>
53                         </tpl:Pagination>
54                    </tpl:EntriesHeader>
55
56                    <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
57               </tpl:Entries>
58
59               <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
60               <link rel="EditURI" type="application/rsd+xml" title="RSD" href="{{tpl:BlogRSDURL}}" />
61               <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
62          </tpl:Block>   <!-- head-linkrel -->
63
64          {{tpl:include src="_head.html"}}
65     </tpl:Block>   <!-- html-head -->
66</head>
67<tpl:Block name="body-tag">
68     <body class="dc-home <tpl:SysIf current_mode="default">dc-home-first</tpl:SysIf>">
69</tpl:Block>
70     <tpl:Block name="html-body">
71          <div id="page">
72               <tpl:Block name="body-page">
73                    <tpl:Block name="page-top">
74                         {{tpl:include src="_top.html"}}
75                    </tpl:Block>   <!-- page-top -->
76
77                    <div id="wrapper">
78                         <tpl:Block name="page-wrapper">
79                              <div id="main" role="main">
80                                   <tpl:Block name="wrapper-main">
81                                        <div id="content">
82                                             <tpl:Block name="main-content">
83
84                                                  <tpl:Entries>
85
86                                                       <!-- First page -->
87                                                       <tpl:SysIf current_mode="default">
88                                                            <tpl:LoopPosition start="1" length="1">
89                                                                 {{tpl:include src="_entry-full.html"}}
90                                                            </tpl:LoopPosition>
91
92                                                            <tpl:LoopPosition start="2">
93                                                                 {{tpl:include src="_entry-short.html"}}
94                                                            </tpl:LoopPosition>
95                                                       </tpl:SysIf>
96
97                                                       <!-- Next pages -->
98                                                       <tpl:SysIf current_mode="!default">
99                                                            {{tpl:include src="_entry-short.html"}}
100                                                       </tpl:SysIf>
101
102                                                       <!-- Pagination -->
103                                                       <tpl:EntriesFooter>
104                                                            {{tpl:include src="_pagination.html"}}
105                                                       </tpl:EntriesFooter>
106
107                                                  </tpl:Entries>
108
109                                             </tpl:Block>   <!-- page-content -->
110                                        </div> <!-- End #content -->
111                                   </tpl:Block>   <!-- wrapper-main -->
112                              </div> <!-- End #main -->
113
114                              <tpl:Block name="wrapper-sidebar">
115                                   {{tpl:include src="_sidebar.html"}}
116                              </tpl:Block>   <!-- wrapper-sidebar -->
117                         </tpl:Block>   <!-- page-wrapper -->
118                    </div> <!-- End #wrapper -->
119
120                    <tpl:Block name="page-footer">
121                         {{tpl:include src="_footer.html"}}
122                    </tpl:Block>   <!-- page-footer -->
123               </tpl:Block>   <!-- body-page -->
124          </div> <!-- End #page -->
125     </tpl:Block>   <!-- html-body -->
126</body>
127</html>
Note: See TracBrowser for help on using the repository browser.

Sites map