diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-07-19 16:24:35 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-07-19 16:24:35 -0700 |
commit | b43873a9ea07afc698d15559717550f8b46e365c (patch) | |
tree | 50d25c6b1e729ab088b9ee01ac5a0cc5b919ccb6 /templates/html.template | |
parent | 1c28c5308f0991c09af8dcbf4e555ee77fe1dab1 (diff) | |
download | pandoc-b43873a9ea07afc698d15559717550f8b46e365c.tar.gz |
Added templates as a git submodule.
This should make it easier for people to track updates to their
custom templates.
Diffstat (limited to 'templates/html.template')
-rw-r--r-- | templates/html.template | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/templates/html.template b/templates/html.template deleted file mode 100644 index 3f8b76fed..000000000 --- a/templates/html.template +++ /dev/null @@ -1,66 +0,0 @@ -$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 name="generator" content="pandoc" /> -$for(author)$ - <meta name="author" content="$author$" /> -$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$" $if(html5)$$else$type="text/css" $endif$/> -$endfor$ -$if(math)$ -$if(html5)$ -$else$ - $math$ -$endif$ -$endif$ -$for(header-includes)$ - $header-includes$ -$endfor$ -</head> -<body> -$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$ -$endif$ -$body$ -$for(include-after)$ -$include-after$ -$endfor$ -</body> -</html> |