Changeset 3017:671366477262 for inc/public/default-templates
- Timestamp:
- 06/26/15 17:04:37 (10 years ago)
- Branch:
- default
- Location:
- inc/public/default-templates
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/public/default-templates/currywurst/__layout.html
r3009 r3017 32 32 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 33 33 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 34 </tpl:Block> <!-- dc- title-head-->34 </tpl:Block> <!-- dc-entry --> 35 35 </tpl:Block> <!-- head-dc --> 36 36 … … 110 110 </tpl:Entries> 111 111 112 </tpl:Block> <!-- page-content -->112 </tpl:Block> <!-- main-content --> 113 113 </div> <!-- End #content --> 114 114 </tpl:Block> <!-- wrapper-main --> -
inc/public/default-templates/mustek/404.html
r3009 r3017 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"> 4 <title>{{tpl:lang Document not found}} - {{tpl:BlogName encode_html="1"}}</title> 5 </tpl:Block> 6 7 <tpl:Block name="meta-robots"> 5 8 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" /> 9 </tpl:Block> 6 10 7 <title>{{tpl:lang Document not found}} - {{tpl:BlogName encode_html="1"}}</title> 8 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 9 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 10 11 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 11 <tpl:Block name="dc-entry"> 12 12 <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Document not found}} - {{tpl:BlogName encode_html="1"}}" /> 13 13 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 14 <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 15 <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 16 <meta property="dc.type" content="text" /> 17 <meta property="dc.format" content="text/html" /> 14 </tpl:Block> 18 15 16 <tpl:Block name="head-linkrel"> 19 17 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 20 18 <link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" /> 21 19 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 20 </tpl:Block> 22 21 23 {{tpl:include src="_head.html"}} 24 </head> 22 <tpl:Block name="body-tag"><body class="dc-404"></tpl:Block> 25 23 26 <body class="dc-404"> 27 <div id="page"> 28 {{tpl:include src="_top.html"}} 29 30 <div id="wrapper"> 31 32 <div id="main" role="main"> 33 {{tpl:Breadcrumb}} 34 <div id="content"> 35 24 <tpl:Block name="main-content"> 36 25 <div id="content-info"> 37 26 <h2>{{tpl:lang Document not found}}</h2> 38 27 </div> 39 28 40 29 <div class="content-inner"> 41 30 <p>{{tpl:lang The document you are looking for does not exist.}}</p> 42 31 </div> 43 44 </div> 45 </div> 46 47 <div id="sidebar" role="complementary"> 48 <div id="blognav"> 49 {{tpl:Widgets type="nav"}} 50 </div> <!-- End #blognav --> 51 52 <div id="blogextra"> 53 {{tpl:Widgets type="extra"}} 54 </div> <!-- End #blogextra --> 55 </div> 56 57 </div> <!-- End #wrapper --> 58 59 {{tpl:include src="_footer.html"}} 60 </div> <!-- End #page --> 61 </body> 62 </html> 32 </tpl:Block> -
inc/public/default-templates/mustek/archive.html
r3009 r3017 1 <!DOCTYPE html> 2 <html lang="{{tpl:BlogLanguage}}"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> 1 {{tpl:extends parent="__layout.html"}} 6 2 7 <title>{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}</title> 8 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 9 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 10 <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 3 <tpl:Block name="head-title"> 4 <title>{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}</title> 5 </tpl:Block> 11 6 12 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 13 <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}" /> 14 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 15 <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 16 <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 17 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 18 <meta property="dc.type" content="text" /> 19 <meta property="dc.format" content="text/html" /> 7 <tpl:Block name="dc-entry"> 8 <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}" /> 9 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 10 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 11 </tpl:Block> 20 12 21 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 13 <tpl:Block name="head-linkrel"> 14 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 15 <tpl:Archives> 16 <link rel="chapter" href="{{tpl:ArchiveURL}}" title="{{tpl:ArchiveDate encode_html="1"}}" /> 17 </tpl:Archives> 18 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 19 </tpl:Block> 22 20 23 <tpl:Archives> 24 <link rel="chapter" href="{{tpl:ArchiveURL}}" title="{{tpl:ArchiveDate encode_html="1"}}" /> 25 </tpl:Archives> 21 <tpl:Block name="body-tag"><body class="dc-archive"></tpl:Block> 26 22 27 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 23 <tpl:Block name="main-content"> 24 <div id="content-info"> 25 <h2>{{tpl:lang Archives}}</h2> 26 </div> 28 27 29 {{tpl:include src="_head.html"}} 30 </head> 31 32 <body class="dc-archive"> 33 <div id="page"> 34 {{tpl:include src="_top.html"}} 35 36 <div id="wrapper"> 37 38 <div id="main" role="main"> 39 {{tpl:Breadcrumb}} 40 <div id="content"> 41 42 <div id="content-info"> 43 <h2>{{tpl:lang Archives}}</h2> 44 </div> 45 46 <div class="content-inner"> 47 <tpl:Archives> 48 <tpl:ArchivesYearHeader> 49 <h3>{{tpl:ArchiveDate format="%Y"}}</h3> 50 <ul> 51 </tpl:ArchivesYearHeader> 52 <li><a href="{{tpl:ArchiveURL}}" 53 title="{{tpl:ArchiveDate encode_html="1"}}">{{tpl:ArchiveDate encode_html="1" format="%B"}}</a> 54 ({{tpl:ArchiveEntriesCount}})</li> 55 <tpl:ArchivesYearFooter> 56 </ul> 57 </tpl:ArchivesYearFooter> 58 </tpl:Archives> 59 </div> 60 61 </div> 62 </div> <!-- End #main --> 63 64 <div id="sidebar" role="complementary"> 65 <div id="blognav"> 66 {{tpl:Widgets type="nav"}} 67 </div> <!-- End #blognav --> 68 69 <div id="blogextra"> 70 {{tpl:Widgets type="extra"}} 71 </div> <!-- End #blogextra --> 72 </div> 73 74 </div> <!-- End #wrapper --> 75 76 {{tpl:include src="_footer.html"}} 77 </div> <!-- End #page --> 78 </body> 79 </html> 28 <div class="content-inner"> 29 <tpl:Archives> 30 <tpl:ArchivesYearHeader> 31 <h3>{{tpl:ArchiveDate format="%Y"}}</h3> 32 <ul> 33 </tpl:ArchivesYearHeader> 34 <li><a href="{{tpl:ArchiveURL}}" 35 title="{{tpl:ArchiveDate encode_html="1"}}">{{tpl:ArchiveDate encode_html="1" format="%B"}}</a> 36 ({{tpl:ArchiveEntriesCount}})</li> 37 <tpl:ArchivesYearFooter> 38 </ul> 39 </tpl:ArchivesYearFooter> 40 </tpl:Archives> 41 </div> 42 </tpl:Block> -
inc/public/default-templates/mustek/archive_month.html
r3009 r3017 1 <!DOCTYPE html> 2 <html lang="{{tpl:BlogLanguage}}"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" /> 1 {{tpl:extends parent="__layout.html"}} 6 2 7 <title>{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}</title> 8 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 9 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 10 <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 3 <tpl:Block name="head-title"> 4 <title>{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}</title> 5 </tpl:Block> 11 6 12 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 13 <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}" /> 14 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 15 <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 16 <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 17 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 18 <meta property="dc.type" content="text" /> 19 <meta property="dc.format" content="text/html" /> 7 <tpl:Block name="meta-robots"> 8 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" /> 9 </tpl:Block> 20 10 21 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 22 <link rel="up" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 23 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 11 <tpl:Block name="dc-entry"> 12 <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}" /> 13 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 14 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 15 </tpl:Block> 24 16 17 <tpl:Block name="head-linkrel"> 18 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 19 <link rel="up" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 20 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 25 21 26 27 28 29 22 <tpl:ArchiveNext><link rel="next" href="{{tpl:ArchiveURL}}" 23 title="{{tpl:ArchiveDate encode_html="1"}}" /></tpl:ArchiveNext> 24 <tpl:ArchivePrevious><link rel="prev" href="{{tpl:ArchiveURL}}" 25 title="{{tpl:ArchiveDate encode_html="1"}}" /></tpl:ArchivePrevious> 30 26 31 <tpl:Entries no_content="1"> 32 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 33 </tpl:Entries> 27 <tpl:Entries no_content="1"> 28 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 29 </tpl:Entries> 30 </tpl:Block> 34 31 35 {{tpl:include src="_head.html"}} 36 </head> 32 <tpl:Block name="body-tag"><body class="dc-archive-month"></tpl:Block> 37 33 38 <body class="dc-archive-month"> 39 <div id="page"> 40 {{tpl:include src="_top.html"}} 34 <tpl:Block name="main-content"> 35 <p id="navlinks"> 36 <tpl:ArchivePrevious><a href="{{tpl:ArchiveURL}}" class="prev">« {{tpl:ArchiveDate encode_html="1"}}</a> 37 - </tpl:ArchivePrevious> 38 <a href="{{tpl:BlogArchiveURL}}">{{tpl:lang Archives}}</a> 39 <tpl:ArchiveNext> - <a href="{{tpl:ArchiveURL}}" class="next">{{tpl:ArchiveDate encode_html="1"}} »</a></tpl:ArchiveNext> 40 </p> 41 41 42 <div id="wrapper"> 42 <div id="content-info"> 43 <h2>{{tpl:ArchiveDate}}</h2> 44 </div> 43 45 44 <div id="main" role="main"> 45 {{tpl:Breadcrumb}} 46 <div id="content"> 46 <div class="content-inner"> 47 <tpl:Entries no_content="1"> 48 <!-- # New day date --> 49 <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader> 47 50 48 <p id="navlinks"> 49 <tpl:ArchivePrevious><a href="{{tpl:ArchiveURL}}" class="prev">« {{tpl:ArchiveDate encode_html="1"}}</a> 50 - </tpl:ArchivePrevious> 51 <a href="{{tpl:BlogArchiveURL}}">{{tpl:lang Archives}}</a> 52 <tpl:ArchiveNext> - <a href="{{tpl:ArchiveURL}}" class="next">{{tpl:ArchiveDate encode_html="1"}} »</a></tpl:ArchiveNext> 53 </p> 51 <h2 id="p{{tpl:EntryID}}" class="post-title" lang="{{tpl:EntryLang}}"><a 52 href="{{tpl:EntryURL}}" title="{{tpl:lang Read}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 54 53 55 <div id="content-info"> 56 <h2>{{tpl:ArchiveDate}}</h2> 57 </div> 58 59 <div class="content-inner"> 60 <tpl:Entries no_content="1"> 61 <!-- # New day date --> 62 <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader> 63 64 <h2 id="p{{tpl:EntryID}}" class="post-title" lang="{{tpl:EntryLang}}"><a 65 href="{{tpl:EntryURL}}" title="{{tpl:lang Read}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 66 67 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 68 <tpl:EntryIf show_comments="1"> 69 - <a href="{{tpl:EntryURL}}#comments">{{tpl:EntryCommentCount}}</a> 70 </tpl:EntryIf> 71 <tpl:EntryIf show_pings="1"> 72 - <a href="{{tpl:EntryURL}}#pings">{{tpl:EntryPingCount}}</a></tpl:EntryIf> 73 <tpl:EntryIf has_attachment="1"> 74 - <a href="{{tpl:EntryURL}}#attachments">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf> 75 </p> 76 </tpl:Entries> 77 </div> 78 </div> 79 </div> <!-- End #main --> 80 81 <div id="sidebar" role="complementary"> 82 <div id="blognav"> 83 {{tpl:Widgets type="nav"}} 84 </div> <!-- End #blognav --> 85 86 <div id="blogextra"> 87 {{tpl:Widgets type="extra"}} 88 </div> <!-- End #blogextra --> 89 </div> 90 91 </div> <!-- End #wrapper --> 92 93 {{tpl:include src="_footer.html"}} 94 </div> <!-- End #page --> 95 </body> 96 </html> 54 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 55 <tpl:EntryIf show_comments="1"> 56 - <a href="{{tpl:EntryURL}}#comments">{{tpl:EntryCommentCount}}</a> 57 </tpl:EntryIf> 58 <tpl:EntryIf show_pings="1"> 59 - <a href="{{tpl:EntryURL}}#pings">{{tpl:EntryPingCount}}</a></tpl:EntryIf> 60 <tpl:EntryIf has_attachment="1"> 61 - <a href="{{tpl:EntryURL}}#attachments">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf> 62 </p> 63 </tpl:Entries> 64 </div> 65 </tpl:Block> -
inc/public/default-templates/mustek/category.html
r3009 r3017 1 <!DOCTYPE html> 2 <html lang="{{tpl:BlogLanguage}}"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" /> 1 {{tpl:extends parent="__layout.html"}} 6 2 7 <title>{{tpl:CategoryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> 8 <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:CategoryDescription encode_html="1" cut_string="180" remove_html="1"}}" /> 9 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 10 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 11 <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 3 <tpl:Block name="head-title"> 4 <title>{{tpl:CategoryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> 5 </tpl:Block> 12 6 13 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 14 <meta property="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>" /> 15 <meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:CategoryDescription remove_html="1"}}" /> 16 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 17 <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 18 <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 19 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 20 <meta property="dc.type" content="text" /> 21 <meta property="dc.format" content="text/html" /> 7 <tpl:Block name="meta-robots"> 8 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" /> 9 </tpl:Block> 22 10 23 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 24 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 11 <tpl:Block name="meta-entry"> 12 <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:CategoryDescription encode_html="1" cut_string="180" remove_html="1"}}" /> 13 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 14 <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 15 </tpl:Block> 25 16 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>17 <tpl:Block name="dc-entry"> 18 <meta property="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>" /> 19 <meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:CategoryDescription remove_html="1"}}" /> 20 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 21 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 22 </tpl:Block> 32 23 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> 24 <tpl:Block name="head-linkrel"> 25 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 26 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 38 27 39 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 40 </tpl:Entries> 28 <tpl:Entries no_content="1"> 29 <tpl:EntriesHeader> 30 <tpl:Pagination> 31 <tpl:PaginationIf end="0"> 32 <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 33 </tpl:PaginationIf> 41 34 42 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:CategoryFeedURL type="atom"}}" /> 35 <tpl:PaginationIf start="0"> 36 <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" /> 37 </tpl:PaginationIf> 38 </tpl:Pagination> 39 </tpl:EntriesHeader> 43 40 44 {{tpl:include src="_head.html"}} 45 </head>41 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 42 </tpl:Entries> 46 43 47 <body class="dc-category"> 48 <div id="page"> 49 {{tpl:include src="_top.html"}} 44 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:CategoryFeedURL type="atom"}}" /> 45 </tpl:Block> 50 46 51 < div id="wrapper">47 <tpl:Block name="body-tag"><body class="dc-category"></tpl:Block> 52 48 53 <div id="main" role="main"> 54 {{tpl:Breadcrumb}} 55 <div id="content"> 49 <tpl:Block name="main-content"> 50 <div id="content-info"> 51 <h2><tpl:CategoryParents><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a> › </tpl:CategoryParents> 52 {{tpl:CategoryTitle encode_html="1"}}</h2> 53 {{tpl:CategoryDescription}} 56 54 57 <div id="content-info"> 58 <h2><tpl:CategoryParents><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a> › </tpl:CategoryParents> 59 {{tpl:CategoryTitle encode_html="1"}}</h2> 60 {{tpl:CategoryDescription}} 55 <tpl:CategoryIf has_entries="1"> 56 <p><a type="application/atom+xml" href="{{tpl:CategoryFeedURL type="atom"}}" 57 title="{{tpl:lang This category's entries Atom feed}}" class="feed">{{tpl:lang Entries feed}}</a> 61 58 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> 59 <tpl:SysIf operator="or" comments_active="1" pings_active="1"> 60 - <a type="application/atom+xml" href="{{tpl:CategoryFeedURL type="atom"}}/comments" 61 title="{{tpl:lang This category's comments Atom feed}}" class="feed">{{tpl:lang Comments feed}}</a> 62 </tpl:SysIf> 63 </p> 64 </tpl:CategoryIf> 65 </div> 65 66 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> 67 <tpl:CategoryFirstChildren> 68 <tpl:CategoriesHeader> 69 <div id="subcategories"> 70 <h3>{{tpl:lang Subcategories}}</h3> 71 <ul> 72 </tpl:CategoriesHeader> 73 <li><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a></li> 74 <tpl:CategoriesFooter> 75 </ul> 76 </div> 77 </tpl:CategoriesFooter> 78 </tpl:CategoryFirstChildren> 73 79 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> 80 <tpl:Entries> 81 <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 82 <!-- # New day date --> 83 <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader> 86 84 87 <tpl:Entries> 88 <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 89 <!-- # New day date --> 90 <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader> 85 <h2 class="post-title"><a 86 href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 91 87 92 <h2 class="post-title"><a 93 href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2>88 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 89 {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}</p> 94 90 95 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 96 {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}</p> 91 <tpl:EntryTags> 92 <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 93 <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li> 94 <tpl:TagsFooter></ul></tpl:TagsFooter> 95 </tpl:EntryTags> 97 96 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> 97 <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 98 {{tpl:SysBehavior behavior="publicEntryBeforeContent"}} 103 99 104 <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 105 {{tpl:SysBehavior behavior="publicEntryBeforeContent"}} 100 <!-- # Entry with an excerpt --> 101 <tpl:EntryIf extended="1"> 102 <div class="post-content">{{tpl:EntryExcerpt}}</div> 103 <p class="read-it"><a href="{{tpl:EntryURL}}" 104 title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue 105 reading}}</a><span class="readmore-ellipsis">...</span></p> 106 </tpl:EntryIf> 106 107 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><span class="readmore-ellipsis">...</span></p> 113 </tpl:EntryIf> 108 <!-- # Entry without excerpt --> 109 <tpl:EntryIf extended="0"> 110 <div class="post-content">{{tpl:EntryContent}}</div> 111 </tpl:EntryIf> 114 112 115 <!-- # Entry without excerpt --> 116 <tpl:EntryIf extended="0"> 117 <div class="post-content">{{tpl:EntryContent}}</div> 118 </tpl:EntryIf> 113 <!-- # --BEHAVIOR-- publicEntryAfterContent --> 114 {{tpl:SysBehavior behavior="publicEntryAfterContent"}} 119 115 120 <!-- # --BEHAVIOR-- publicEntryAfterContent --> 121 {{tpl:SysBehavior behavior="publicEntryAfterContent"}} 116 <!-- # Number of comments, trackbacks and attachments --> 117 <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1"> 118 <p class="post-info-co"> 119 </tpl:EntryIf> 120 <tpl:EntryIf show_comments="1"> 121 <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a> 122 </tpl:EntryIf> 123 <tpl:EntryIf show_pings="1"> 124 <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf> 125 <tpl:EntryIf has_attachment="1"> 126 <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf> 127 <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1"> 128 </p> 129 </tpl:EntryIf> 130 </div> 122 131 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">« 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 »</a></tpl:PaginationIf></p> 146 </tpl:Pagination> 147 </tpl:EntriesFooter> 148 </tpl:Entries> 149 </div> 150 </div> <!-- End #main --> 151 152 <div id="sidebar" role="complementary"> 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> 132 <tpl:EntriesFooter> 133 <tpl:Pagination> 134 <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">« 135 {{tpl:lang previous entries}}</a> - </tpl:PaginationIf> 136 {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}} 137 <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}} 138 »</a></tpl:PaginationIf></p> 139 </tpl:Pagination> 140 </tpl:EntriesFooter> 141 </tpl:Entries> 142 </tpl:Block> -
inc/public/default-templates/mustek/home.html
r3009 r3017 1 <!DOCTYPE html> 2 <html lang="{{tpl:BlogLanguage}}"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> 6 7 <title>{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> 8 <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>" /> 9 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 10 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 11 <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 12 13 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 14 <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 15 <meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" /> 16 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 17 <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 18 <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 19 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 20 <meta property="dc.type" content="text" /> 21 <meta property="dc.format" content="text/html" /> 22 23 <link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" /> 24 <tpl:Categories> 25 <link rel="section" href="{{tpl:CategoryURL}}" title="{{tpl:CategoryTitle encode_html="1"}}" /> 26 </tpl:Categories> 27 28 <tpl:Entries no_content="1"> 29 <tpl:EntriesHeader> 30 <tpl:Pagination> 31 <tpl:PaginationIf end="0"> 32 <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 33 </tpl:PaginationIf> 34 35 <tpl:PaginationIf start="0"> 36 <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" /> 37 </tpl:PaginationIf> 38 </tpl:Pagination> 39 </tpl:EntriesHeader> 40 41 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 42 </tpl:Entries> 43 44 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 45 <link rel="EditURI" type="application/rsd+xml" title="RSD" href="{{tpl:BlogRSDURL}}" /> 46 <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" /> 47 48 {{tpl:include src="_head.html"}} 49 </head> 50 51 <body class="dc-home"> 52 <div id="page"> 53 {{tpl:include src="_top.html"}} 54 55 <div id="wrapper"> 56 57 <div id="main" role="main"> 58 {{tpl:Breadcrumb}} 59 <div id="content"> 60 <tpl:Entries> 61 <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 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><span class="readmore-ellipsis">...</span></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">« 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 »</a></tpl:PaginationIf></p> 123 </tpl:Pagination> 124 </tpl:EntriesFooter> 125 </tpl:Entries> 126 </div> 127 </div> <!-- End #main --> 128 129 <div id="sidebar" role="complementary"> 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> 1 {{tpl:extends parent="__layout.html"}} -
inc/public/default-templates/mustek/post.html
r3009 r3017 1 <!DOCTYPE html> 2 <html lang="{{tpl:BlogLanguage}}"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> 6 7 <title>{{tpl:EntryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}</title> 8 <meta name="description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" /> 9 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 10 <meta name="author" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 11 <meta name="date" content="{{tpl:EntryDate iso8601="1"}}" /> 12 13 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 14 <meta property="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" /> 15 <meta property="dc.description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" /> 16 <meta property="dc.creator" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 17 <meta property="dc.language" content="{{tpl:EntryLang}}" /> 18 <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 19 <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 20 <meta property="dc.date" content="{{tpl:EntryDate iso8601="1"}}" /> 21 <meta property="dc.type" content="text" /> 22 <meta property="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 <tpl:EntryIf pings_active="1"><link rel="pingback" href="{{tpl:BlogXMLRPCURL}}" /></tpl:EntryIf> 27 28 <tpl:EntryNext><link rel="next" href="{{tpl:EntryURL}}" 29 title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryNext> 30 31 <tpl:EntryPrevious><link rel="prev" href="{{tpl:EntryURL}}" 32 title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryPrevious> 33 34 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 35 36 {{tpl:include src="_head.html"}} 37 38 <script type="text/javascript" src="{{tpl:BlogQmarkURL}}pf=post.js"></script> 39 <script type="text/javascript"> 40 //<![CDATA[ 41 var post_remember_str = '{{tpl:lang Remember me on this blog}}'; 42 //]]> 43 </script> 44 </head> 45 46 <body class="dc-post"> 47 <div id="page"> 48 {{tpl:EntryPingData}} 49 50 {{tpl:include src="_top.html"}} 51 52 <div id="wrapper"> 53 54 <div id="main" role="main"> 55 {{tpl:Breadcrumb}} 56 <div id="content"> 57 58 <p id="navlinks"> 59 <tpl:EntryPrevious><a href="{{tpl:EntryURL}}" 60 title="{{tpl:EntryTitle encode_html="1"}}" class="prev">« {{tpl:EntryTitle encode_html="1" 61 cut_string="50"}}</a></tpl:EntryPrevious> 62 <tpl:EntryNext> <span>-</span> <a href="{{tpl:EntryURL}}" 63 title="{{tpl:EntryTitle encode_html="1"}}" class="next">{{tpl:EntryTitle encode_html="1" 64 cut_string="50"}} »</a></tpl:EntryNext> 65 </p> 66 67 <div id="p{{tpl:EntryID}}" class="post" role="article"> 68 <h2 class="post-title">{{tpl:EntryTitle encode_html="1"}}</h2> 69 70 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 71 {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}} 72 <tpl:EntryIf has_category="1"> 73 - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a> 74 </tpl:EntryIf> 75 - <a href="{{tpl:EntryURL}}">{{tpl:lang Permalink}}</a> 76 </p> 77 78 <tpl:EntryTags> 79 <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 80 <li><a href="{{tpl:TagURL}}" rel="tag">{{tpl:TagID}}</a></li> 81 <tpl:TagsFooter></ul></tpl:TagsFooter> 82 </tpl:EntryTags> 83 84 <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 85 {{tpl:SysBehavior behavior="publicEntryBeforeContent"}} 86 87 <!-- # Entry with an excerpt --> 88 <tpl:EntryIf extended="1"> 89 <div class="post-excerpt">{{tpl:EntryExcerpt}}</div> 90 </tpl:EntryIf> 91 92 <div class="post-content">{{tpl:EntryContent}}</div> 93 94 <!-- # --BEHAVIOR-- publicEntryAfterContent --> 95 {{tpl:SysBehavior behavior="publicEntryAfterContent"}} 96 </div> 97 98 <!-- # Attachments --> 99 <tpl:Attachments> 100 <tpl:AttachmentsHeader> 101 <div id="attachments"> 102 <h3>{{tpl:lang Attachments}}</h3> 103 <ul> 104 </tpl:AttachmentsHeader> 105 <li class="{{tpl:AttachmentType}}"> 106 <tpl:AttachmentIf is_mp3="1"> 107 {{tpl:include src="_mp3_player.html"}} - 108 </tpl:AttachmentIf> 109 <tpl:AttachmentIf is_flv="1"> 110 {{tpl:include src="_flv_player.html"}} 111 </tpl:AttachmentIf> 112 <tpl:AttachmentIf is_flv="0"> 113 <a href="{{tpl:AttachmentURL}}" 1 {{tpl:extends parent="__layout.html"}} 2 3 <tpl:Block name="head-title"> 4 <title>{{tpl:EntryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}</title> 5 </tpl:Block> 6 7 <tpl:Block name="meta-entry"> 8 <meta name="description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" /> 9 <meta name="author" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 10 <meta name="date" content="{{tpl:EntryDate iso8601="1"}}" /> 11 </tpl:Block> 12 13 <tpl:Block name="dc-entry"> 14 <meta property="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" /> 15 <meta property="dc.description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" /> 16 <meta property="dc.creator" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 17 <meta property="dc.language" content="{{tpl:EntryLang}}" /> 18 <meta property="dc.date" content="{{tpl:EntryDate iso8601="1"}}" /> 19 </tpl:Block> 20 21 <tpl:Block name="head-linkrel"> 22 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 23 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 24 <tpl:EntryIf pings_active="1"><link rel="pingback" href="{{tpl:BlogXMLRPCURL}}" /></tpl:EntryIf> 25 26 <tpl:EntryNext><link rel="next" href="{{tpl:EntryURL}}" 27 title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryNext> 28 29 <tpl:EntryPrevious><link rel="prev" href="{{tpl:EntryURL}}" 30 title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryPrevious> 31 32 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 33 </tpl:Block> 34 35 <tpl:Block name="html-head"> 36 {{tpl:parent}} 37 38 <script type="text/javascript" src="{{tpl:BlogQmarkURL}}pf=post.js"></script> 39 <script type="text/javascript"> 40 //<![CDATA[ 41 var post_remember_str = '{{tpl:lang Remember me on this blog}}'; 42 //]]> 43 </script> 44 </tpl:Block> 45 46 <tpl:Block name="body-tag"><body class="dc-post"></tpl:Block> 47 48 <tpl:Block name="page-top"> 49 {{tpl:EntryPingData}} 50 {{tpl:parent}} 51 </tpl:Block> 52 53 <tpl:Block name="main-content"> 54 <p id="navlinks"> 55 <tpl:EntryPrevious><a href="{{tpl:EntryURL}}" 56 title="{{tpl:EntryTitle encode_html="1"}}" class="prev">« {{tpl:EntryTitle encode_html="1" 57 cut_string="50"}}</a></tpl:EntryPrevious> 58 <tpl:EntryNext> <span>-</span> <a href="{{tpl:EntryURL}}" 59 title="{{tpl:EntryTitle encode_html="1"}}" class="next">{{tpl:EntryTitle encode_html="1" 60 cut_string="50"}} »</a></tpl:EntryNext> 61 </p> 62 63 <div id="p{{tpl:EntryID}}" class="post" role="article"> 64 <h2 class="post-title">{{tpl:EntryTitle encode_html="1"}}</h2> 65 66 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 67 {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}} 68 <tpl:EntryIf has_category="1"> 69 - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a> 70 </tpl:EntryIf> 71 - <a href="{{tpl:EntryURL}}">{{tpl:lang Permalink}}</a> 72 </p> 73 74 <tpl:EntryTags> 75 <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 76 <li><a href="{{tpl:TagURL}}" rel="tag">{{tpl:TagID}}</a></li> 77 <tpl:TagsFooter></ul></tpl:TagsFooter> 78 </tpl:EntryTags> 79 80 <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 81 {{tpl:SysBehavior behavior="publicEntryBeforeContent"}} 82 83 <!-- # Entry with an excerpt --> 84 <tpl:EntryIf extended="1"> 85 <div class="post-excerpt">{{tpl:EntryExcerpt}}</div> 86 </tpl:EntryIf> 87 88 <div class="post-content">{{tpl:EntryContent}}</div> 89 90 <!-- # --BEHAVIOR-- publicEntryAfterContent --> 91 {{tpl:SysBehavior behavior="publicEntryAfterContent"}} 92 </div> 93 94 <!-- # Attachments --> 95 <tpl:Attachments> 96 <tpl:AttachmentsHeader> 97 <div id="attachments"> 98 <h3>{{tpl:lang Attachments}}</h3> 99 <ul> 100 </tpl:AttachmentsHeader> 101 <li class="{{tpl:AttachmentType}}"> 102 <tpl:AttachmentIf is_mp3="1"> 103 {{tpl:include src="_mp3_player.html"}} - 104 </tpl:AttachmentIf> 105 <tpl:AttachmentIf is_flv="1"> 106 {{tpl:include src="_flv_player.html"}} 107 </tpl:AttachmentIf> 108 <tpl:AttachmentIf is_flv="0"> 109 <a href="{{tpl:AttachmentURL}}" 114 110 title="{{tpl:AttachmentFileName}} ({{tpl:AttachmentSize}})">{{tpl:AttachmentTitle}}</a> 115 </tpl:AttachmentIf> 116 </li> 117 <tpl:AttachmentsFooter> 118 </ul> 119 </div> 120 </tpl:AttachmentsFooter> 121 </tpl:Attachments> 122 123 <!-- # Comments --> 124 <tpl:EntryIf show_comments="1"> 125 <tpl:Comments> 126 <tpl:CommentsHeader> 127 <div id="comments"> 128 <h3>{{tpl:lang Comments}}</h3> 129 <dl> 130 </tpl:CommentsHeader> 131 <dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"><a 132 href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a> 133 {{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}} 134 {{tpl:lang by}} {{tpl:CommentAuthorLink}}</dt> 135 136 <dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"> 137 <!-- # --BEHAVIOR-- publicCommentBeforeContent --> 138 {{tpl:SysBehavior behavior="publicCommentBeforeContent"}} 139 140 {{tpl:CommentContent}} 141 142 <!-- # --BEHAVIOR-- publicCommentAfterContent --> 143 {{tpl:SysBehavior behavior="publicCommentAfterContent"}} 144 </dd> 145 <tpl:CommentsFooter> 146 </dl> 147 </div> 148 </tpl:CommentsFooter> 149 </tpl:Comments> 150 </tpl:EntryIf> 151 152 <tpl:EntryIf comments_active="1"> 153 <tpl:SysIfFormError> 154 <p class="error" id="pr">{{tpl:SysFormError}}</p> 155 </tpl:SysIfFormError> 156 157 <tpl:SysIfCommentPublished> 158 <p class="message" id="pr">{{tpl:lang Your comment has been published.}}</p> 159 </tpl:SysIfCommentPublished> 160 161 <tpl:SysIfCommentPending> 162 <p class="message" id="pr">{{tpl:lang Your comment has been submitted and 163 will be reviewed for publication.}}</p> 164 </tpl:SysIfCommentPending> 165 166 <!-- # Comment form --> 167 <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form" role="form"> 168 <tpl:IfCommentPreview> 169 <div id="pr"> 170 <h3>{{tpl:lang Your comment}}</h3> 171 <dl> 172 <dd class="comment-preview">{{tpl:CommentPreviewContent}}</dd> 173 </dl> 174 <p class="buttons"><input type="submit" class="submit" value="{{tpl:lang send}}" /></p> 175 </div> 176 </tpl:IfCommentPreview> 177 178 <h3>{{tpl:lang Add a comment}}</h3> 179 <fieldset> 180 <!-- # --BEHAVIOR-- publicCommentFormBeforeContent --> 181 {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}} 182 183 <p class="field"><label for="c_name">{{tpl:lang Name or nickname}} :</label> 184 <input name="c_name" id="c_name" type="text" size="30" maxlength="255" 185 value="{{tpl:CommentPreviewName encode_html="1"}}" /> 186 </p> 187 188 <p class="field"><label for="c_mail">{{tpl:lang Email address}} :</label> 189 <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255" 190 value="{{tpl:CommentPreviewEmail encode_html="1"}}" /> 191 </p> 192 193 <p class="field"><label for="c_site">{{tpl:lang Website}} ({{tpl:lang optional}}) :</label> 194 <input name="c_site" id="c_site" type="text" size="30" maxlength="255" 195 value="{{tpl:CommentPreviewSite encode_html="1"}}" /> 196 </p> 197 198 <p style="display:none"><input name="f_mail" type="text" size="30" 199 maxlength="255" value="" /></p> 200 201 <p class="field"><label for="c_content">{{tpl:lang Comment}} :</label> 202 <textarea name="c_content" id="c_content" cols="35" 203 rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea> 204 </p> 205 <p class="form-help">{{tpl:CommentHelp}}</p> 206 207 <!-- # --BEHAVIOR-- publicCommentFormAfterContent --> 208 {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}} 209 </fieldset> 210 211 <fieldset> 212 <p class="buttons"><input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" /> 213 <tpl:IfCommentPreviewOptional><input type="submit" class="submit" value="{{tpl:lang send}}" /></tpl:IfCommentPreviewOptional></p> 214 </fieldset> 215 </form> 216 </tpl:EntryIf> 217 218 <!-- # Trackbacks --> 219 <tpl:EntryIf show_pings="1"> 220 <div id="pings"> 221 <h3>{{tpl:lang They posted on the same topic}}</h3> 222 <tpl:Pings> 223 <tpl:PingsHeader> 224 <dl> 225 </tpl:PingsHeader> 226 <dt id="c{{tpl:PingID}}" class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"><a href="#c{{tpl:PingID}}" 227 class="ping-number">{{tpl:PingOrderNumber}}.</a> 228 {{tpl:lang On}} {{tpl:PingDate}}, {{tpl:PingTime}} 229 {{tpl:lang by}} {{tpl:PingBlogName encode_html="1"}}</dt> 230 231 <dd class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"> 232 <!-- # --BEHAVIOR-- publicPingBeforeContent --> 233 {{tpl:SysBehavior behavior="publicPingBeforeContent"}} 234 235 <p><a href="{{tpl:PingAuthorURL}}" 236 {{tpl:PingNoFollow}}>{{tpl:PingTitle encode_html="1"}}</a></p> 237 {{tpl:PingContent}} 238 239 <!-- # --BEHAVIOR-- publicPingAfterContent --> 240 {{tpl:SysBehavior behavior="publicPingAfterContent"}} 241 </dd> 242 <tpl:PingsFooter> 243 </dl> 244 </tpl:PingsFooter> 245 </tpl:Pings> 246 </div> 247 </tpl:EntryIf> 248 249 <tpl:EntryIf pings_active="1"> 250 <p id="ping-url">{{tpl:lang Trackback URL}} : {{tpl:EntryPingLink}}</p> 251 </tpl:EntryIf> 252 253 <tpl:EntryIf operator="or" comments_active="1" pings_active="1"> 254 <p id="comments-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}" 255 title="{{tpl:lang This post's comments Atom feed}}">{{tpl:lang This post's comments feed}}</a></p> 256 </tpl:EntryIf> 257 </div> 258 </div> <!-- End #main --> 259 260 <div id="sidebar" role="complementary"> 261 <div id="blognav"> 262 {{tpl:Widgets type="nav"}} 263 </div> <!-- End #blognav --> 264 265 <div id="blogextra"> 266 {{tpl:Widgets type="extra"}} 267 </div> <!-- End #blogextra --> 268 </div> 269 270 </div> <!-- End #wrapper --> 271 272 {{tpl:include src="_footer.html"}} 273 </div> <!-- End #page --> 274 </body> 275 </html> 111 </tpl:AttachmentIf> 112 </li> 113 <tpl:AttachmentsFooter> 114 </ul> 115 </div> 116 </tpl:AttachmentsFooter> 117 </tpl:Attachments> 118 119 <!-- # Comments --> 120 <tpl:EntryIf show_comments="1"> 121 <tpl:Comments> 122 <tpl:CommentsHeader> 123 <div id="comments"> 124 <h3>{{tpl:lang Comments}}</h3> 125 <dl> 126 </tpl:CommentsHeader> 127 <dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"><a 128 href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a> 129 {{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}} 130 {{tpl:lang by}} {{tpl:CommentAuthorLink}}</dt> 131 132 <dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"> 133 <!-- # --BEHAVIOR-- publicCommentBeforeContent --> 134 {{tpl:SysBehavior behavior="publicCommentBeforeContent"}} 135 136 {{tpl:CommentContent}} 137 138 <!-- # --BEHAVIOR-- publicCommentAfterContent --> 139 {{tpl:SysBehavior behavior="publicCommentAfterContent"}} 140 </dd> 141 <tpl:CommentsFooter> 142 </dl> 143 </div> 144 </tpl:CommentsFooter> 145 </tpl:Comments> 146 </tpl:EntryIf> 147 148 <tpl:EntryIf comments_active="1"> 149 <tpl:SysIfFormError> 150 <p class="error" id="pr">{{tpl:SysFormError}}</p> 151 </tpl:SysIfFormError> 152 153 <tpl:SysIfCommentPublished> 154 <p class="message" id="pr">{{tpl:lang Your comment has been published.}}</p> 155 </tpl:SysIfCommentPublished> 156 157 <tpl:SysIfCommentPending> 158 <p class="message" id="pr">{{tpl:lang Your comment has been submitted and 159 will be reviewed for publication.}}</p> 160 </tpl:SysIfCommentPending> 161 162 <!-- # Comment form --> 163 <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form" role="form"> 164 <tpl:IfCommentPreview> 165 <div id="pr"> 166 <h3>{{tpl:lang Your comment}}</h3> 167 <dl> 168 <dd class="comment-preview">{{tpl:CommentPreviewContent}}</dd> 169 </dl> 170 <p class="buttons"><input type="submit" class="submit" value="{{tpl:lang send}}" /></p> 171 </div> 172 </tpl:IfCommentPreview> 173 174 <h3>{{tpl:lang Add a comment}}</h3> 175 <fieldset> 176 <!-- # --BEHAVIOR-- publicCommentFormBeforeContent --> 177 {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}} 178 179 <p class="field"><label for="c_name">{{tpl:lang Name or nickname}} :</label> 180 <input name="c_name" id="c_name" type="text" size="30" maxlength="255" 181 value="{{tpl:CommentPreviewName encode_html="1"}}" /> 182 </p> 183 184 <p class="field"><label for="c_mail">{{tpl:lang Email address}} :</label> 185 <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255" 186 value="{{tpl:CommentPreviewEmail encode_html="1"}}" /> 187 </p> 188 189 <p class="field"><label for="c_site">{{tpl:lang Website}} ({{tpl:lang optional}}) :</label> 190 <input name="c_site" id="c_site" type="text" size="30" maxlength="255" 191 value="{{tpl:CommentPreviewSite encode_html="1"}}" /> 192 </p> 193 194 <p style="display:none"><input name="f_mail" type="text" size="30" 195 maxlength="255" value="" /></p> 196 197 <p class="field"><label for="c_content">{{tpl:lang Comment}} :</label> 198 <textarea name="c_content" id="c_content" cols="35" 199 rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea> 200 </p> 201 <p class="form-help">{{tpl:CommentHelp}}</p> 202 203 <!-- # --BEHAVIOR-- publicCommentFormAfterContent --> 204 {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}} 205 </fieldset> 206 207 <fieldset> 208 <p class="buttons"><input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" /> 209 <tpl:IfCommentPreviewOptional><input type="submit" class="submit" value="{{tpl:lang send}}" /></tpl:IfCommentPreviewOptional></p> 210 </fieldset> 211 </form> 212 </tpl:EntryIf> 213 214 <!-- # Trackbacks --> 215 <tpl:EntryIf show_pings="1"> 216 <div id="pings"> 217 <h3>{{tpl:lang They posted on the same topic}}</h3> 218 <tpl:Pings> 219 <tpl:PingsHeader> 220 <dl> 221 </tpl:PingsHeader> 222 <dt id="c{{tpl:PingID}}" class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"><a href="#c{{tpl:PingID}}" 223 class="ping-number">{{tpl:PingOrderNumber}}.</a> 224 {{tpl:lang On}} {{tpl:PingDate}}, {{tpl:PingTime}} 225 {{tpl:lang by}} {{tpl:PingBlogName encode_html="1"}}</dt> 226 227 <dd class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"> 228 <!-- # --BEHAVIOR-- publicPingBeforeContent --> 229 {{tpl:SysBehavior behavior="publicPingBeforeContent"}} 230 231 <p><a href="{{tpl:PingAuthorURL}}" 232 {{tpl:PingNoFollow}}>{{tpl:PingTitle encode_html="1"}}</a></p> 233 {{tpl:PingContent}} 234 235 <!-- # --BEHAVIOR-- publicPingAfterContent --> 236 {{tpl:SysBehavior behavior="publicPingAfterContent"}} 237 </dd> 238 <tpl:PingsFooter> 239 </dl> 240 </tpl:PingsFooter> 241 </tpl:Pings> 242 </div> 243 </tpl:EntryIf> 244 245 <tpl:EntryIf pings_active="1"> 246 <p id="ping-url">{{tpl:lang Trackback URL}} : {{tpl:EntryPingLink}}</p> 247 </tpl:EntryIf> 248 249 <tpl:EntryIf operator="or" comments_active="1" pings_active="1"> 250 <p id="comments-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}" 251 title="{{tpl:lang This post's comments Atom feed}}">{{tpl:lang This post's comments feed}}</a></p> 252 </tpl:EntryIf> 253 </tpl:Block> -
inc/public/default-templates/mustek/search.html
r3009 r3017 1 <!DOCTYPE html> 2 <html lang="{{tpl:BlogLanguage}}"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" /> 1 {{tpl:extends parent="__layout.html"}} 6 2 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 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 9 <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 10 <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 3 <tpl:Block name="head-title"> 4 <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> 5 </tpl:Block> 11 6 12 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 13 <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>" /> 14 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 15 <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 16 <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 17 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 18 <meta property="dc.type" content="text" /> 19 <meta property="dc.format" content="text/html" /> 7 <tpl:Block name="meta-robots"> 8 <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" /> 9 </tpl:Block> 20 10 21 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 22 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 11 <tpl:Block name="dc-entry"> 12 <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>" /> 13 <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 14 <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 15 </tpl:Block> 23 16 24 <tpl:Entries no_content="1"> 25 <tpl:EntriesHeader> 26 <tpl:Pagination> 27 <tpl:PaginationIf end="0"> 28 <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 29 </tpl:PaginationIf> 17 <tpl:Block name="head-linkrel"> 18 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 19 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 20 <tpl:Entries no_content="1"> 21 <tpl:EntriesHeader> 22 <tpl:Pagination> 23 <tpl:PaginationIf end="0"> 24 <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 25 </tpl:PaginationIf> 30 26 31 <tpl:PaginationIf start="0"> 32 <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" /> 33 </tpl:PaginationIf> 34 </tpl:Pagination> 35 </tpl:EntriesHeader> 27 <tpl:PaginationIf start="0"> 28 <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" /> 29 </tpl:PaginationIf> 30 </tpl:Pagination> 31 </tpl:EntriesHeader> 32 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 33 </tpl:Entries> 34 <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" /> 35 </tpl:Block> 36 36 37 <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 38 </tpl:Entries> 37 <tpl:Block name="body-tag"><body class="dc-search"></tpl:Block> 39 38 40 <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" /> 39 <tpl:Block name="main-content"> 40 <div id="content-info"> 41 <h2>{{tpl:lang Search}}</h2> 42 <tpl:SysIf search_count="==0"> 43 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned no result."}}</p> 44 </tpl:SysIf> 45 <tpl:SysIf search_count="==1"> 46 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> result."}}</p> 47 </tpl:SysIf> 48 <tpl:SysIf search_count=">1"> 49 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> results."}}</p> 50 </tpl:SysIf> 51 </div> 41 52 42 {{tpl:include src="_head.html"}} 43 </head> 53 <tpl:Entries> 54 <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 55 <!-- # New day date --> 56 <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader> 44 57 45 <body class="dc-search"> 46 <div id="page"> 47 {{tpl:include src="_top.html"}} 58 <h2 class="post-title"><a 59 href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 48 60 49 <div id="wrapper"> 61 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 62 {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}} 63 <tpl:EntryIf has_category="1"> 64 - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a> 65 </tpl:EntryIf> 66 </p> 50 67 51 <div id="main" role="main"> 52 {{tpl:Breadcrumb}} 53 <div id="content"> 68 <tpl:EntryTags> 69 <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 70 <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li> 71 <tpl:TagsFooter></ul></tpl:TagsFooter> 72 </tpl:EntryTags> 54 73 55 <div id="content-info"> 56 <h2>{{tpl:lang Search}}</h2> 57 <tpl:SysIf search_count="==0"> 58 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned no result."}}</p> 59 </tpl:SysIf> 60 <tpl:SysIf search_count="==1"> 61 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> result."}}</p> 62 </tpl:SysIf> 63 <tpl:SysIf search_count=">1"> 64 <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> results."}}</p> 65 </tpl:SysIf> 66 </div> 74 <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 75 {{tpl:SysBehavior behavior="publicEntryBeforeContent"}} 67 76 68 <tpl:Entries> 69 <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 70 <!-- # New day date --> 71 <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader> 77 <!-- # Entry with an excerpt --> 78 <tpl:EntryIf extended="1"> 79 <div class="post-content">{{tpl:EntryExcerpt}}</div> 80 <p class="read-it"><a href="{{tpl:EntryURL}}" 81 title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue 82 reading}}</a><span class="readmore-ellipsis">...</span></p> 83 </tpl:EntryIf> 72 84 73 <h2 class="post-title"><a 74 href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 85 <!-- # Entry without excerpt --> 86 <tpl:EntryIf extended="0"> 87 <div class="post-content">{{tpl:EntryContent}}</div> 88 </tpl:EntryIf> 75 89 76 <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 77 {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}} 78 <tpl:EntryIf has_category="1"> 79 - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a> 80 </tpl:EntryIf> 81 </p> 90 <!-- # --BEHAVIOR-- publicEntryAfterContent --> 91 {{tpl:SysBehavior behavior="publicEntryAfterContent"}} 82 92 83 <tpl:EntryTags> 84 <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 85 <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li> 86 <tpl:TagsFooter></ul></tpl:TagsFooter> 87 </tpl:EntryTags> 93 <!-- # Number of comments, trackbacks and attachments --> 94 <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1"> 95 <p class="post-info-co"> 96 </tpl:EntryIf> 97 <tpl:EntryIf show_comments="1"> 98 <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a> 99 </tpl:EntryIf> 100 <tpl:EntryIf show_pings="1"> 101 <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf> 102 <tpl:EntryIf has_attachment="1"> 103 <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf> 104 <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1"> 105 </p> 106 </tpl:EntryIf> 107 </div> 88 108 89 <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 90 {{tpl:SysBehavior behavior="publicEntryBeforeContent"}} 91 92 <!-- # Entry with an excerpt --> 93 <tpl:EntryIf extended="1"> 94 <div class="post-content">{{tpl:EntryExcerpt}}</div> 95 <p class="read-it"><a href="{{tpl:EntryURL}}" 96 title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue 97 reading}}</a><span class="readmore-ellipsis">...</span></p> 98 </tpl:EntryIf> 99 100 <!-- # Entry without excerpt --> 101 <tpl:EntryIf extended="0"> 102 <div class="post-content">{{tpl:EntryContent}}</div> 103 </tpl:EntryIf> 104 105 <!-- # --BEHAVIOR-- publicEntryAfterContent --> 106 {{tpl:SysBehavior behavior="publicEntryAfterContent"}} 107 108 <!-- # Number of comments, trackbacks and attachments --> 109 <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1"> 110 <p class="post-info-co"> 111 </tpl:EntryIf> 112 <tpl:EntryIf show_comments="1"> 113 <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a> 114 </tpl:EntryIf> 115 <tpl:EntryIf show_pings="1"> 116 <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf> 117 <tpl:EntryIf has_attachment="1"> 118 <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf> 119 <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1"> 120 </p> 121 </tpl:EntryIf> 122 </div> 123 124 <tpl:EntriesFooter> 125 <tpl:Pagination> 126 <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">« 127 {{tpl:lang previous entries}}</a> - </tpl:PaginationIf> 128 {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}} 129 <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}} 130 »</a></tpl:PaginationIf></p> 131 </tpl:Pagination> 132 </tpl:EntriesFooter> 133 </tpl:Entries> 134 </div> 135 </div> <!-- End #main --> 136 137 <div id="sidebar" role="complementary"> 138 <div id="blognav"> 139 {{tpl:Widgets type="nav"}} 140 </div> <!-- End #blognav --> 141 142 <div id="blogextra"> 143 {{tpl:Widgets type="extra"}} 144 </div> <!-- End #blogextra --> 145 </div> 146 147 </div> <!-- End #wrapper --> 148 149 {{tpl:include src="_footer.html"}} 150 </div> <!-- End #page --> 151 </body> 152 </html> 109 <tpl:EntriesFooter> 110 <tpl:Pagination> 111 <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">« 112 {{tpl:lang previous entries}}</a> - </tpl:PaginationIf> 113 {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}} 114 <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}} 115 »</a></tpl:PaginationIf></p> 116 </tpl:Pagination> 117 </tpl:EntriesFooter> 118 </tpl:Entries> 119 </tpl:Block>
Note: See TracChangeset
for help on using the changeset viewer.