template.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <div class="navbar navbar-static-top">
  35. <div class="navbar-inner">
  36. <div class="container">
  37. <span class="doc-title">Tutoriel Git</span>
  38. <ul class="nav pull-right doc-info">
  39. <li><p class="navbar-text"> <a href="https://gogs.univ-littoral.fr">Serveur Gogs de l'ULCO</a></p></li>
  40. <li><p class="navbar-text"> <a href="https://www-lisic.univ-littoral.fr/~dehos">Page d'accueil</a></p></li>
  41. <li><p class="navbar-text"> <a href="https://gogs.univ-littoral.fr/jdehos/tutoriel_git">Dépôt</a></p></li>
  42. </ul>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="navbar navbar-static-top">
  47. <div class="container">
  48. <div class="row">
  49. <div class="span3">
  50. <br>
  51. <div class="well toc">
  52. <ul>
  53. <li class="nav-header">Plan du tutoriel</li>
  54. </ul>
  55. $include-before$
  56. </div>
  57. $if(toc)$
  58. <div class="well toc">
  59. <ul>
  60. <li class="nav-header">Plan de la page</li>
  61. </ul>
  62. $toc$
  63. </div>
  64. $endif$
  65. </div>
  66. <div class="span$if(toc)$9$else$12$endif$">
  67. $if(title)$
  68. <h1>$title$</h1>
  69. $endif$
  70. $body$
  71. </div>
  72. <div class="navbar navbar-static-top">
  73. $if(date)$
  74. <ul class="nav pull-right doc-info">
  75. <li> <p class="navbar-text ">Dernière modification : $date$</p> </li>
  76. </ul>
  77. $endif$
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. </body>
  83. </html>