template_slidy.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <meta http-equiv="Content-Style-Type" content="text/css" />
  8. <meta name="generator" content="pandoc" />
  9. $for(author-meta)$
  10. <meta name="author" content="$author-meta$" />
  11. $endfor$
  12. $if(date-meta)$
  13. <meta name="date" content="$date-meta$" />
  14. $endif$
  15. <title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
  16. <style type="text/css">code{white-space: pre;}</style>
  17. $if(highlighting-css)$
  18. <style type="text/css">
  19. $highlighting-css$
  20. </style>
  21. $endif$
  22. $for(css)$
  23. <link rel="stylesheet" type="text/css" media="screen, projection, print"
  24. href="$css$" />
  25. $endfor$
  26. $if(math)$
  27. $math$
  28. $endif$
  29. $for(header-includes)$
  30. $header-includes$
  31. $endfor$
  32. <!-- <script src="$slidy-url$/scripts/slidy.js" -->
  33. <link rel="stylesheet" type="text/css" media="screen, projection, print" href="../slidy.css" />
  34. <script src="../slidy.js" charset="utf-8" type="text/javascript"></script>
  35. $if(duration)$
  36. <meta name="duration" content="$duration$" />
  37. $endif$
  38. </head>
  39. <body>
  40. $for(include-before)$
  41. $include-before$
  42. $endfor$
  43. $if(title)$
  44. <div class="slide titlepage">
  45. <h1 class="title">$title$</h1>
  46. $if(subtitle)$
  47. <h1 class="subtitle">$subtitle$</h1>
  48. $endif$
  49. <p class="author">
  50. $for(author)$$author$$sep$<br/>$endfor$
  51. </p>
  52. $if(date)$
  53. <p class="date">$date$</p>
  54. $endif$
  55. </div>
  56. <div class="slide" >
  57. <h1> Table des matières </h1>
  58. <ul id="toctoc">
  59. </ul>
  60. </div>
  61. $endif$
  62. $body$
  63. $for(include-after)$
  64. $include-after$
  65. $endfor$
  66. </body>
  67. </html>