- Timestamp:
- 02/23/14 09:28:58 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/public/default-templates/currywurst/post.html
r2603 r2668 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:EntryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}</title> 3 <tpl:Block name="head-title">{{tpl:EntryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}</tpl:Block> 4 5 <tpl:Block name="head-meta"> 8 6 <meta name="description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" /> 9 7 <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 10 8 <meta name="author" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 11 9 <meta name="date" content="{{tpl:EntryDate iso8601="1"}}" /> 10 </tpl:Block> 12 11 12 <tpl:Block name="head-dc"> 13 13 <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 14 14 <meta property="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" /> … … 21 21 <meta property="dc.type" content="text" /> 22 22 <meta property="dc.format" content="text/html" /> 23 </tpl:Block> 23 24 25 <tpl:Block name"head-linkrel"> 24 26 <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 25 27 <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 26 27 28 <tpl:EntryNext><link rel="next" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryNext> 28 29 <tpl:EntryPrevious><link rel="prev" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryPrevious> 30 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 31 </tpl:Block> 29 32 30 <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" /> 31 32 {{tpl:include src="_head.html"}} 33 <tpl:Block name="html-head"> 34 {{tpl:parent}} 33 35 34 36 <script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/post.js"></script> … … 38 40 //]]> 39 41 </script> 40 </head> 42 </tpl:Block> 43 44 <tpl:Block name="html-body"> 41 45 <body class="dc-post"> 42 46 <div id="page"> … … 80 84 </div> <!-- End #page --> 81 85 </body> 82 </ html>86 </tpl:Block>
Note: See TracChangeset
for help on using the changeset viewer.