summaryrefslogtreecommitdiff
path: root/templates/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/default.html')
-rw-r--r--templates/default.html46
1 files changed, 7 insertions, 39 deletions
diff --git a/templates/default.html b/templates/default.html
index d107f4809..c231b8fa5 100644
--- a/templates/default.html
+++ b/templates/default.html
@@ -1,45 +1,27 @@
-$if(html5)$
-<!DOCTYPE html>
-<html$if(lang)$ lang="$lang$"$endif$>
-$else$
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$>
-$endif$
<head>
-$if(html5)$
- <meta charset="utf-8" />
-$else$
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-$endif$
+ <meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="generator" content="pandoc" />
-$for(author)$
- <meta name="author" content="$author$" />
+$for(author-meta)$
+ <meta name="author" content="$author-meta$" />
$endfor$
-$if(date)$
- <meta name="date" content="$date$" />
+$if(date-meta)$
+ <meta name="date" content="$date-meta$" />
$endif$
<title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title>
-$if(html5)$
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
-$endif$
$if(highlighting-css)$
<style type="text/css">
-/*<![CDATA[*/
$highlighting-css$
-/*]]>*/
</style>
$endif$
$for(css)$
<link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/>
$endfor$
$if(math)$
-$if(html5)$
-$else$
$math$
$endif$
-$endif$
$for(header-includes)$
$header-includes$
$endfor$
@@ -49,35 +31,21 @@ $for(include-before)$
$include-before$
$endfor$
$if(title)$
-$if(html5)$
-<header>
-$else$
<div id="$idprefix$header">
-$endif$
<h1 class="title">$title$</h1>
$for(author)$
-<h3 class="author">$author$</h3>
+<h2 class="author">$author$</h2>
$endfor$
$if(date)$
-<h4 class="date">$date$</h4>
+<h3 class="date">$date$</h3>
$endif$
-$if(html5)$
-</header>
-$else$
</div>
$endif$
-$endif$
$if(toc)$
-$if(html5)$
-<nav id="$idprefix$TOC">
-$toc$
-</nav>
-$else$
<div id="$idprefix$TOC">
$toc$
</div>
$endif$
-$endif$
$body$
$for(include-after)$
$include-after$