Dotclear

source: inc/public/default-templates/search.html @ 0:54703be25dd6

Revision 0:54703be25dd6, 6.3 KB checked in by Dsls <dsls@…>, 14 years ago (diff)

2.3 branch (trunk) first checkin

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="MSSmartTagsPreventParsing" content="TRUE" />
7  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" />
8 
9  <title>{{tpl:lang Search}} - {{tpl:SysSearchString encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title>
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:lang Search}} - {{tpl:SysSearchString encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
16  <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
17  <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
18  <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
19  <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
20  <meta name="dc.type" content="text" />
21  <meta name="dc.format" content="text/html" />
22 
23  <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
24  <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
25 
26  <tpl:Entries no_content="1">
27    <tpl:EntriesHeader>
28      <tpl:Pagination>
29        <tpl:PaginationIf end="0">
30        <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
31        </tpl:PaginationIf>
32       
33        <tpl:PaginationIf start="0">
34        <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
35        </tpl:PaginationIf>
36      </tpl:Pagination>
37    </tpl:EntriesHeader>
38   
39    <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
40  </tpl:Entries>
41 
42  <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
43 
44  {{tpl:include src="_head.html"}}
45</head>
46
47<body class="dc-search">
48<div id="page">
49{{tpl:include src="_top.html"}}
50
51<div id="wrapper">
52
53<div id="main">
54  <div id="content">
55 
56  <div id="content-info">
57    <h2>{{tpl:lang Search}}</h2>
58    <tpl:SysIf search_count="==0">
59      <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned no result."}}</p>
60    </tpl:SysIf>
61    <tpl:SysIf search_count="==1">
62      <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> result."}}</p>
63    </tpl:SysIf>
64    <tpl:SysIf search_count="&gt;1">
65      <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> results."}}</p>
66    </tpl:SysIf>
67  </div>
68 
69  <tpl:Entries>
70    <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}">
71    <!-- # New day date -->
72    <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
73   
74    <h2 class="post-title"><a
75    href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2>
76   
77    <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
78    {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
79    <tpl:EntryIf has_category="1">
80    - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a>
81    </tpl:EntryIf>
82    </p>
83   
84    <tpl:EntryTags>
85    <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader>
86    <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li>
87    <tpl:TagsFooter></ul></tpl:TagsFooter>
88    </tpl:EntryTags>
89   
90    <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
91    {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
92   
93    <!-- # Entry with an excerpt -->
94    <tpl:EntryIf extended="1">
95      <div class="post-content">{{tpl:EntryExcerpt}}</div>
96      <p class="read-it"><a href="{{tpl:EntryURL}}"
97      title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
98      reading}}</a>...</p>
99    </tpl:EntryIf>
100   
101    <!-- # Entry without excerpt -->
102    <tpl:EntryIf extended="0">
103      <div class="post-content">{{tpl:EntryContent}}</div>
104    </tpl:EntryIf>
105   
106    <!-- # --BEHAVIOR-- publicEntryAfterContent -->
107    {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
108   
109    <!-- # Number of comments, trackbacks and attachments -->
110    <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
111      <p class="post-info-co">
112    </tpl:EntryIf>
113    <tpl:EntryIf show_comments="1">
114      <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
115    </tpl:EntryIf>
116    <tpl:EntryIf show_pings="1">
117      <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
118    <tpl:EntryIf has_attachment="1">
119      <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
120    <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
121      </p>
122    </tpl:EntryIf>
123    </div>
124   
125    <tpl:EntriesFooter>
126      <tpl:Pagination>
127        <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
128        {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
129        {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
130        <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
131        &#187;</a></tpl:PaginationIf></p>
132      </tpl:Pagination>
133    </tpl:EntriesFooter>
134  </tpl:Entries>
135  </div>
136</div> <!-- End #main -->
137
138<div id="sidebar">
139  <div id="blognav">
140    {{tpl:Widgets type="nav"}}
141  </div> <!-- End #blognav -->
142 
143  <div id="blogextra">
144    {{tpl:Widgets type="extra"}}
145  </div> <!-- End #blogextra -->
146</div>
147
148</div> <!-- End #wrapper -->
149
150{{tpl:include src="_footer.html"}}
151</div> <!-- End #page -->
152</body>
153</html>
Note: See TracBrowser for help on using the repository browser.

Sites map