Dotclear

source: inc/public/default-templates/home.html @ 199:d1538efa6724

Revision 199:d1538efa6724, 6.1 KB checked in by Franck <carnet.franck.paul@…>, 14 years ago (diff)

Suppression de <meta name="MSSmartTagsPreventParsing" content="TRUE" /> dans le head
Ne sert strictement à plus rien du tout du tout
Fix #963 (http://dev.dotclear.org/2.0/ticket/963)

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:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title>
9  <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>" />
10  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
11  <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
12  <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
13 
14  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
15  <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
16  <meta name="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" />
17  <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
18  <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
19  <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
20  <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
21  <meta name="dc.type" content="text" />
22  <meta name="dc.format" content="text/html" />
23 
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 
49  {{tpl:include src="_head.html"}}
50</head>
51
52<body class="dc-home">
53<div id="page">
54{{tpl:include src="_top.html"}}
55
56<div id="wrapper">
57
58<div id="main">
59  <div id="content">
60  <tpl:Entries>
61    <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}">
62    <!-- # New day date -->
63    <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
64   
65    <h2 class="post-title"><a
66    href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2>
67   
68    <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
69    {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
70    <tpl:EntryIf has_category="1">
71    - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a>
72    </tpl:EntryIf>
73    </p>
74   
75    <tpl:EntryTags>
76    <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader>
77    <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li>
78    <tpl:TagsFooter></ul></tpl:TagsFooter>
79    </tpl:EntryTags>
80   
81    <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
82    {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
83   
84    <!-- # Entry with an excerpt -->
85    <tpl:EntryIf extended="1">
86      <div class="post-content">{{tpl:EntryExcerpt}}</div>
87      <p class="read-it"><a href="{{tpl:EntryURL}}"
88      title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
89      reading}}</a>...</p>
90    </tpl:EntryIf>
91   
92    <!-- # Entry without excerpt -->
93    <tpl:EntryIf extended="0">
94      <div class="post-content">{{tpl:EntryContent}}</div>
95    </tpl:EntryIf>
96   
97    <!-- # --BEHAVIOR-- publicEntryAfterContent -->
98    {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
99   
100    <!-- # Number of comments, trackbacks and attachments -->
101    <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
102      <p class="post-info-co">
103    </tpl:EntryIf>
104    <tpl:EntryIf show_comments="1">
105      <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
106    </tpl:EntryIf>
107    <tpl:EntryIf show_pings="1">
108      <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
109    <tpl:EntryIf has_attachment="1">
110      <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
111    <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
112      </p>
113    </tpl:EntryIf>
114    </div>
115   
116    <tpl:EntriesFooter>
117      <tpl:Pagination>
118        <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
119        {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
120        {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
121        <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
122        &#187;</a></tpl:PaginationIf></p>
123      </tpl:Pagination>
124    </tpl:EntriesFooter>
125  </tpl:Entries>
126  </div>
127</div> <!-- End #main -->
128
129<div id="sidebar">
130  <div id="blognav">
131    {{tpl:Widgets type="nav"}}
132  </div> <!-- End #blognav -->
133 
134  <div id="blogextra">
135    {{tpl:Widgets type="extra"}}
136  </div> <!-- End #blogextra -->
137</div>
138
139</div> <!-- End #wrapper -->
140
141{{tpl:include src="_footer.html"}}
142</div> <!-- End #page -->
143</body>
144</html>
Note: See TracBrowser for help on using the repository browser.

Sites map