Legend:
- Unmodified
- Added
- Removed
-
inc/public/default-templates/currywurst/search.html
r2603 r2675 1 <!DOCTYPE html> 2 <html lang="{{tpl:BlogLanguage}}"> 3 <head> 4 <meta charset="UTF-8" /> 1 {{tpl:extends parent="__layout.html"}} 2 3 <tpl:Block name="head-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></tpl:Block> 4 5 <tpl:Block name="head-meta"> 5 6 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" /> 6 7 <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>8 7 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 9 8 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 10 9 <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 10 </tpl:Block> 11 11 12 <tpl:Block name="head-dc"> 12 13 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 13 14 <meta property="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>" /> … … 18 19 <meta property="dc.type" content="text" /> 19 20 <meta property="dc.format" content="text/html" /> 21 </tpl:Block> 20 22 23 <tpl:Block name="head-linkrel"> 21 24 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 22 25 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 23 24 26 <tpl:Entries no_content="1"> 25 27 <tpl:EntriesHeader> … … 28 30 <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 29 31 </tpl:PaginationIf> 30 31 32 <tpl:PaginationIf start="0"> 32 33 <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" /> … … 34 35 </tpl:Pagination> 35 36 </tpl:EntriesHeader> 36 37 37 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 38 38 </tpl:Entries> 39 <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" /> 40 </tpl:Block> 39 41 40 <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />42 <tpl:Block name="body-attr">class="dc-search"</tpl:Block> 41 43 42 {{tpl:include src="_head.html"}} 43 </head> 44 <body class="dc-search"> 45 <div id="page"> 46 {{tpl:include src="_top.html"}} 44 <tpl:Block name="main-content"> 45 <div id="content-info"> 46 <h2>{{tpl:lang Search}}</h2> 47 <tpl:SysIf search_count="==0"> 48 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned no result."}}</p> 49 </tpl:SysIf> 50 <tpl:SysIf search_count="==1"> 51 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> result."}}</p> 52 </tpl:SysIf> 53 <tpl:SysIf search_count=">1"> 54 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> results."}}</p> 55 </tpl:SysIf> 56 </div> 47 57 48 <div id="wrapper"> 58 <div class="content-inner"> 59 <tpl:Entries type="post,page"> 49 60 50 <div id="main" role="main"> 51 <div id="content"> 61 {{tpl:include src="_entry-short.html"}} 52 62 53 <div id="content-info"> 54 <h2>{{tpl:lang Search}}</h2> 55 <tpl:SysIf search_count="==0"> 56 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned no result."}}</p> 57 </tpl:SysIf> 58 <tpl:SysIf search_count="==1"> 59 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> 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> results."}}</p> 63 </tpl:SysIf> 64 </div> 65 66 <div class="content-inner"> 67 <tpl:Entries type="post,page"> 68 69 {{tpl:include src="_entry-short.html"}} 70 71 <tpl:EntriesFooter> 72 <tpl:Pagination> 73 <p class="pagination"> 74 <tpl:PaginationIf end="0"> 75 <a href="{{tpl:PaginationURL offset="+1"}}" class="prev">« {{tpl:lang previous entries}}</a> - 76 </tpl:PaginationIf> 77 {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}} 78 <tpl:PaginationIf start="0"> 79 - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}} »</a> 80 </tpl:PaginationIf> 81 </p> 82 </tpl:Pagination> 83 </tpl:EntriesFooter> 84 </tpl:Entries> 85 </div> <!-- End #content-inner --> 86 </div> <!-- End #content --> 87 </div> <!-- End #main --> 88 89 {{tpl:include src="_sidebar.html"}} 90 91 </div> <!-- End #wrapper --> 92 93 {{tpl:include src="_footer.html"}} 94 </div> <!-- End #page --> 95 </body> 96 </html> 63 <tpl:EntriesFooter> 64 <tpl:Pagination> 65 <p class="pagination"> 66 <tpl:PaginationIf end="0"> 67 <a href="{{tpl:PaginationURL offset="+1"}}" class="prev">« {{tpl:lang previous entries}}</a> - 68 </tpl:PaginationIf> 69 {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}} 70 <tpl:PaginationIf start="0"> 71 - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}} »</a> 72 </tpl:PaginationIf> 73 </p> 74 </tpl:Pagination> 75 </tpl:EntriesFooter> 76 </tpl:Entries> 77 </div> <!-- End #content-inner --> 78 </tpl:Block>
Note: See TracChangeset
for help on using the changeset viewer.