1 | <!DOCTYPE html> |
---|
2 | <html lang="{{tpl:BlogLanguage}}"> |
---|
3 | <head> |
---|
4 | <tpl:Block name="html-head"> |
---|
5 | <meta charset="UTF-8" /> |
---|
6 | |
---|
7 | <tpl:Block name="head-title"> |
---|
8 | <title>{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> |
---|
9 | </tpl:Block> <!-- # head-title --> |
---|
10 | |
---|
11 | <tpl:Block name="head-meta"> |
---|
12 | <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> |
---|
13 | <tpl:Block name="meta-robots"> |
---|
14 | <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> |
---|
15 | </tpl:Block> <!-- # meta-robots --> |
---|
16 | <tpl:Block name="meta-entry"> |
---|
17 | <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription cut_string="180" remove_html="1" encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> |
---|
18 | <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> |
---|
19 | <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> |
---|
20 | </tpl:Block> <!-- # meta-entry --> |
---|
21 | </tpl:Block> <!-- # head-meta --> |
---|
22 | |
---|
23 | <tpl:Block name="head-linkrel"> |
---|
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 | </tpl:Block> <!-- # head-linkrel --> |
---|
49 | |
---|
50 | {{tpl:include src="_head.html"}} |
---|
51 | </tpl:Block> <!-- # html-head --> |
---|
52 | </head> |
---|
53 | <tpl:Block name="body-tag"> |
---|
54 | <body class="dc-home <tpl:SysIf current_mode="default">dc-home-first</tpl:SysIf>"> |
---|
55 | </tpl:Block> |
---|
56 | <tpl:Block name="html-body"> |
---|
57 | <div id="page"> |
---|
58 | <tpl:Block name="body-page"> |
---|
59 | <tpl:Block name="page-top"> |
---|
60 | {{tpl:include src="_top.html"}} |
---|
61 | </tpl:Block> <!-- # page-top --> |
---|
62 | |
---|
63 | <div id="wrapper"> |
---|
64 | <tpl:Block name="page-wrapper"> |
---|
65 | <main id="main" role="main"> |
---|
66 | <tpl:Block name="wrapper-main"> |
---|
67 | <tpl:Block name="main-breadcrumb"> |
---|
68 | {{tpl:Breadcrumb}} |
---|
69 | </tpl:Block> |
---|
70 | <section id="content"> |
---|
71 | <tpl:Block name="main-content"> |
---|
72 | |
---|
73 | <tpl:Entries> |
---|
74 | |
---|
75 | <!-- # First page --> |
---|
76 | <tpl:SysIf current_mode="default"> |
---|
77 | <tpl:LoopPosition start="1" length="1"> |
---|
78 | {{tpl:include src="_entry-full.html"}} |
---|
79 | </tpl:LoopPosition> |
---|
80 | |
---|
81 | <tpl:LoopPosition start="2"> |
---|
82 | {{tpl:include src="_entry-short.html"}} |
---|
83 | </tpl:LoopPosition> |
---|
84 | </tpl:SysIf> |
---|
85 | |
---|
86 | <!-- # Next pages --> |
---|
87 | <tpl:SysIf current_mode="!default"> |
---|
88 | {{tpl:include src="_entry-short.html"}} |
---|
89 | </tpl:SysIf> |
---|
90 | |
---|
91 | <!-- # Pagination --> |
---|
92 | <tpl:EntriesFooter> |
---|
93 | {{tpl:include src="_pagination.html"}} |
---|
94 | </tpl:EntriesFooter> |
---|
95 | |
---|
96 | </tpl:Entries> |
---|
97 | |
---|
98 | </tpl:Block> <!-- # main-content --> |
---|
99 | </section> <!-- # End #content --> |
---|
100 | </tpl:Block> <!-- # wrapper-main --> |
---|
101 | </main> <!-- # End #main --> |
---|
102 | |
---|
103 | <tpl:Block name="wrapper-sidebar"> |
---|
104 | {{tpl:include src="_sidebar.html"}} |
---|
105 | </tpl:Block> <!-- # wrapper-sidebar --> |
---|
106 | </tpl:Block> <!-- # page-wrapper --> |
---|
107 | </div> <!-- # End #wrapper --> |
---|
108 | |
---|
109 | <tpl:Block name="page-footer"> |
---|
110 | {{tpl:include src="_footer.html"}} |
---|
111 | </tpl:Block> <!-- # page-footer --> |
---|
112 | </tpl:Block> <!-- # body-page --> |
---|
113 | </div> <!-- # End #page --> |
---|
114 | </tpl:Block> <!-- # html-body --> |
---|
115 | </body> |
---|
116 | </html> |
---|