adapt misc.tmpl to html5

master
Joey Hess 2010-05-02 16:45:13 -04:00
parent 677d2af18a
commit 36688de7c6
1 changed files with 9 additions and 9 deletions

View File

@ -10,7 +10,7 @@
<TMPL_ELSE>
<base href="<TMPL_VAR BASEURL>" />
</TMPL_IF>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<TMPL_IF HTML5><meta charset="utf-8" /><TMPL_ELSE><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></TMPL_IF>
<title><TMPL_VAR TITLE></title>
<TMPL_IF NAME="FAVICON">
<link rel="icon" href="<TMPL_VAR BASEURL><TMPL_VAR FAVICON>" type="image/x-icon" />
@ -20,24 +20,24 @@
</head>
<body>
<div class="pageheader">
<div class="header">
<TMPL_IF HTML5><section class="pageheader"><TMPL_ELSE><div class="pageheader"></TMPL_IF>
<TMPL_IF HTML5><header class="header"><TMPL_ELSE><div class="header"></TMPL_IF>
<span>
<TMPL_VAR INDEXLINK>/
<span class="title">
<TMPL_VAR TITLE>
</span>
</span>
</div>
</div> <!-- .pageheader -->
<TMPL_IF HTML5></header><TMPL_ELSE></div></TMPL_IF>
<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
<div id="content">
<TMPL_IF HTML5><section id="content"><TMPL_ELSE><div id="content"></TMPL_IF>
<TMPL_VAR PAGEBODY>
</div>
<TMPL_IF HTML5></section><TMPL_ELSE></div></TMPL_IF>
<div id="footer" class="pagefooter">
<TMPL_IF HTML5><footer id="footer" class="pagefooter"><TMPL_ELSE><div id="footer" class="pagefooter"></TMPL_IF>
<!-- from <TMPL_VAR WIKINAME> -->
</div><!-- .pagefooter #footer -->
<TMPL_IF HTML5></footer><TMPL_ELSE></div></TMPL_IF>
</body>
</html>