diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/html.template | 29 | ||||
-rw-r--r-- | templates/s5.template | 2 | ||||
-rw-r--r-- | templates/slidy.template | 2 |
3 files changed, 28 insertions, 5 deletions
diff --git a/templates/html.template b/templates/html.template index bd1864ff0..3f8b76fed 100644 --- a/templates/html.template +++ b/templates/html.template @@ -1,8 +1,16 @@ +$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"> +<html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$> +$endif$ <head> - <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> +$if(html5)$ + <meta charset="utf-8" /> +$else$ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +$endif$ <meta name="generator" content="pandoc" /> $for(author)$ <meta name="author" content="$author$" /> @@ -10,17 +18,26 @@ $endfor$ $if(date)$ <meta name="date" content="$date$" /> $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"> $highlighting-css$ </style> $endif$ $for(css)$ - <link rel="stylesheet" href="$css$" type="text/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$ @@ -30,7 +47,13 @@ $for(include-before)$ $include-before$ $endfor$ $if(title)$ +$if(html5)$ +<header> +$endif$ <h1 class="title">$title$</h1> +$if(html5)$ +</header> +$endif$ $endif$ $if(toc)$ $toc$ diff --git a/templates/s5.template b/templates/s5.template index 480c1e435..c1f727f6e 100644 --- a/templates/s5.template +++ b/templates/s5.template @@ -1,7 +1,6 @@ <!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"> <head> - <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="pandoc" /> $for(author)$ @@ -10,6 +9,7 @@ $endfor$ $if(date)$ <meta name="date" content="$date$" /> $endif$ + <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> <!-- configuration parameters --> <meta name="defaultView" content="slideshow" /> <meta name="controlVis" content="hidden" /> diff --git a/templates/slidy.template b/templates/slidy.template index f625c36e2..9cfdb8f5e 100644 --- a/templates/slidy.template +++ b/templates/slidy.template @@ -3,7 +3,6 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> - <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="pandoc" /> $for(author)$ @@ -13,6 +12,7 @@ $if(date)$ <meta name="date" content="$date$" /> $endif$ $if(highlighting-css)$ + <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> <style type="text/css"> $highlighting-css$ </style> |