Dotclear

source: inc/public/default-templates/mustek/category.html @ 2599:0ada32904b98

Revision 2599:0ada32904b98, 6.8 KB checked in by franck <carnet.franck.paul@…>, 12 years ago (diff)

The first original and legacy default template set is now "mustek" aka Codename of Dotclear 2.0

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 robots="NOINDEX"}}" />
7
8  <title>{{tpl:CategoryTitle encode_html="1"}} - {{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:CategoryDescription cut_string="180" remove_html="1"}}" />
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:CategoryTitle encode_html="1"}} - {{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:CategoryDescription remove_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="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
25  <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
26
27  <tpl:Entries no_content="1">
28    <tpl:EntriesHeader>
29      <tpl:Pagination>
30        <tpl:PaginationIf end="0">
31        <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
32        </tpl:PaginationIf>
33
34        <tpl:PaginationIf start="0">
35        <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
36        </tpl:PaginationIf>
37      </tpl:Pagination>
38    </tpl:EntriesHeader>
39
40    <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
41  </tpl:Entries>
42
43  <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:CategoryFeedURL type="atom"}}" />
44
45  {{tpl:include src="_head.html"}}
46</head>
47
48<body class="dc-category">
49<div id="page">
50{{tpl:include src="_top.html"}}
51
52<div id="wrapper">
53
54<div id="main">
55  <div id="content">
56
57  <div id="content-info">
58    <h2><tpl:CategoryParents><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a> &rsaquo; </tpl:CategoryParents>
59    {{tpl:CategoryTitle encode_html="1"}}</h2>
60    {{tpl:CategoryDescription}}
61
62    <tpl:CategoryIf has_entries="1">
63      <p><a type="application/atom+xml" href="{{tpl:CategoryFeedURL type="atom"}}"
64      title="{{tpl:lang This category's entries Atom feed}}" class="feed">{{tpl:lang Entries feed}}</a>
65
66      <tpl:SysIf operator="or" comments_active="1" pings_active="1">
67      - <a type="application/atom+xml" href="{{tpl:CategoryFeedURL type="atom"}}/comments"
68      title="{{tpl:lang This category's comments Atom feed}}" class="feed">{{tpl:lang Comments feed}}</a>
69      </tpl:SysIf>
70      </p>
71    </tpl:CategoryIf>
72  </div>
73
74  <tpl:CategoryFirstChildren>
75    <tpl:CategoriesHeader>
76      <div id="subcategories">
77      <h3>{{tpl:lang Subcategories}}</h3>
78      <ul>
79    </tpl:CategoriesHeader>
80    <li><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a></li>
81    <tpl:CategoriesFooter>
82      </ul>
83      </div>
84    </tpl:CategoriesFooter>
85  </tpl:CategoryFirstChildren>
86
87  <tpl:Entries>
88    <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}">
89    <!-- # New day date -->
90    <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
91
92    <h2 class="post-title"><a
93    href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2>
94
95    <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
96    {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}</p>
97
98    <tpl:EntryTags>
99    <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader>
100    <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li>
101    <tpl:TagsFooter></ul></tpl:TagsFooter>
102    </tpl:EntryTags>
103
104    <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
105    {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
106
107    <!-- # Entry with an excerpt -->
108    <tpl:EntryIf extended="1">
109      <div class="post-content">{{tpl:EntryExcerpt}}</div>
110      <p class="read-it"><a href="{{tpl:EntryURL}}"
111      title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
112      reading}}</a>...</p>
113    </tpl:EntryIf>
114
115    <!-- # Entry without excerpt -->
116    <tpl:EntryIf extended="0">
117      <div class="post-content">{{tpl:EntryContent}}</div>
118    </tpl:EntryIf>
119
120    <!-- # --BEHAVIOR-- publicEntryAfterContent -->
121    {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
122
123    <!-- # Number of comments, trackbacks and attachments -->
124    <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
125      <p class="post-info-co">
126    </tpl:EntryIf>
127    <tpl:EntryIf show_comments="1">
128      <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
129    </tpl:EntryIf>
130    <tpl:EntryIf show_pings="1">
131      <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
132    <tpl:EntryIf has_attachment="1">
133      <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
134    <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
135      </p>
136    </tpl:EntryIf>
137    </div>
138
139    <tpl:EntriesFooter>
140      <tpl:Pagination>
141        <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
142        {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
143        {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
144        <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
145        &#187;</a></tpl:PaginationIf></p>
146      </tpl:Pagination>
147    </tpl:EntriesFooter>
148  </tpl:Entries>
149  </div>
150</div> <!-- End #main -->
151
152<div id="sidebar">
153  <div id="blognav">
154    {{tpl:Widgets type="nav"}}
155  </div> <!-- End #blognav -->
156
157  <div id="blogextra">
158    {{tpl:Widgets type="extra"}}
159  </div> <!-- End #blogextra -->
160</div>
161
162</div> <!-- End #wrapper -->
163
164{{tpl:include src="_footer.html"}}
165</div> <!-- End #page -->
166</body>
167</html>
Note: See TracBrowser for help on using the repository browser.

Sites map