template.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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="span$if(toc)$9$else$12$endif$">
  49. $for(include-before)$
  50. $include-before$
  51. $endfor$
  52. </div>
  53. <div class="row">
  54. $if(toc)$
  55. <div id="$idprefix$TOC" class="span3">
  56. <div class="well toc">
  57. <ul>
  58. <li class="nav-header">Table des matières</li>
  59. </ul>
  60. $toc$
  61. </div>
  62. </div>
  63. $endif$
  64. <div class="span$if(toc)$9$else$12$endif$">
  65. $body$
  66. </div>
  67. <div class="navbar navbar-static-top">
  68. $if(date)$
  69. <ul class="nav pull-right doc-info">
  70. <li> <p class="navbar-text ">Dernière modification : $date$</p> </li>
  71. </ul>
  72. $endif$
  73. </div>
  74. </div>
  75. </div>
  76. </div>
  77. </body>
  78. </html>