template.html 3.0 KB

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