You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pandoc.template 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="generator" content="pandoc" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
  7. $for(author-meta)$
  8. <meta name="author" content="$author-meta$" />
  9. $endfor$
  10. $if(date-meta)$
  11. <meta name="dcterms.date" content="$date-meta$" />
  12. $endif$
  13. $if(keywords)$
  14. <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
  15. $endif$
  16. $if(description-meta)$
  17. <meta name="description" content="$description-meta$" />
  18. $endif$
  19. <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
  20. <style type="text/css">
  21. code{white-space: pre-wrap;}
  22. span.smallcaps{font-variant: small-caps;}
  23. span.underline{text-decoration: underline;}
  24. div.column{display: inline-block; vertical-align: top; width: 50%;}
  25. </style>
  26. $for(css)$
  27. <link rel="stylesheet" href="$css$" />
  28. $endfor$
  29. $if(math)$
  30. $math$
  31. $endif$
  32. <!--[if lt IE 9]>
  33. <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
  34. <![endif]-->
  35. $for(header-includes)$
  36. $header-includes$
  37. $endfor$
  38. </head>
  39. <body>
  40. $for(include-before)$
  41. $include-before$
  42. $endfor$
  43. $body$
  44. $for(include-after)$
  45. $include-after$
  46. $endfor$
  47. </body>
  48. </html>