template.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml"$if(lang)$ lang="$lang$" xml:lang="$lang$"$endif$>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta http-equiv="Content-Style-Type" content="text/css" />
  6. <meta name="generator" content="pandoc" />
  7. $for(author-meta)$
  8. <meta name="author" content="$author-meta$" />
  9. $endfor$
  10. $if(date-meta)$
  11. <meta name="date" content="$date-meta$" />
  12. $endif$
  13. <title>$if(title-prefix)$$title-prefix$ - $endif$$pagetitle$</title>
  14. <style type="text/css">code{white-space: pre;}</style>
  15. $if(quotes)$
  16. <style type="text/css">q { quotes: "“" "”" "‘" "’"; }</style>
  17. $endif$
  18. $if(highlighting-css)$
  19. <style type="text/css">
  20. $highlighting-css$
  21. </style>
  22. $endif$
  23. $for(css)$
  24. <link rel="stylesheet" href="$css$" $if(html5)$$else$type="text/css" $endif$/>
  25. $endfor$
  26. $if(math)$
  27. $math$
  28. $endif$
  29. $for(header-includes)$
  30. $header-includes$
  31. $endfor$
  32. </head>
  33. <body>
  34. $if(title)$
  35. <div class="navbar navbar-static-top">
  36. <div class="navbar-inner">
  37. <div class="container">
  38. <span class="doc-title">$title$</span>
  39. <ul class="nav pull-right doc-info">
  40. <li><p class="navbar-text"> <a href="https://gogs.univ-littoral.fr">Serveur Gogs de l'ULCO</a></p></li>
  41. </ul>
  42. </div>
  43. </div>
  44. </div>
  45. $endif$
  46. <div class="navbar navbar-static-top">
  47. <div class="container">
  48. <div class="row">
  49. $if(toc)$
  50. <div id="$idprefix$TOC" class="span3">
  51. <div class="well toc">
  52. <ul>
  53. <li class="nav-header">Table des matières</li>
  54. </ul>
  55. $toc$
  56. </div>
  57. $for(include-before)$
  58. $include-before$
  59. $endfor$
  60. </div>
  61. $endif$
  62. <div class="span$if(toc)$9$else$12$endif$">
  63. $body$
  64. </div>
  65. <div class="navbar navbar-static-top">
  66. $if(date)$
  67. <ul class="nav pull-right doc-info">
  68. <li> <p class="navbar-text ">Dernière modification : $date$</p> </li>
  69. </ul>
  70. $endif$
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. </body>
  76. </html>