dark-website.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$"$if(dir)$ dir="$dir$"$endif$>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="generator" content="pandoc" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
  7. $for(author-meta)$
  8. <meta name="author" content="$author-meta$" />
  9. $endfor$
  10. $if(date-meta)$
  11. <meta name="dcterms.date" content="$date-meta$" />
  12. $endif$
  13. $if(keywords)$
  14. <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
  15. $endif$
  16. $if(description-meta)$
  17. <meta name="description" content="$description-meta$" />
  18. $endif$
  19. <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
  20. <style>
  21. $styles.html()$
  22. html {
  23. background-color: #606263;
  24. font-size: 20px;
  25. }
  26. figcaption {
  27. text-align: center;
  28. color: #5fd700;
  29. }
  30. pre {
  31. background: #4B4C4D;
  32. padding-left: 25px;
  33. padding-right: 25px;
  34. margin-top: 0;
  35. margin-bottom: 0px;
  36. }
  37. code {
  38. padding-top: 3px;
  39. padding-bottom: 3px;
  40. font-weight: normal;
  41. padding-left: 7px;
  42. padding-right: 7px;
  43. background: #4B4C4D;
  44. font: monospace;
  45. color: #FFFF12;
  46. }
  47. a {
  48. color: #02c3f8;
  49. }
  50. a:visited {
  51. color: #02c3f8;
  52. }
  53. .center {
  54. display: block;
  55. margin-left: auto;
  56. margin-right: auto;
  57. }
  58. </style>
  59. $for(css)$
  60. <link rel="stylesheet" href="$css$" />
  61. $endfor$
  62. $if(math)$
  63. $math$
  64. $endif$
  65. <!--[if lt IE 9]>
  66. <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
  67. <![endif]-->
  68. $for(header-includes)$
  69. $header-includes$
  70. $endfor$
  71. </head>
  72. <body bgcolor="#606362" link="#02c3f8" alink="#017bf5" vlink="#02c3f8">
  73. $for(include-before)$
  74. $include-before$
  75. $endfor$
  76. $if(title)$
  77. <header id="title-block-header">
  78. <h1 class="title">$title$</h1>
  79. $if(subtitle)$
  80. <p class="subtitle">$subtitle$</p>
  81. $endif$
  82. $for(author)$
  83. <p class="author">$author$</p>
  84. $endfor$
  85. $if(date)$
  86. <p class="date">$date$</p>
  87. $endif$
  88. </header>
  89. $endif$
  90. $if(toc)$
  91. <nav id="$idprefix$TOC" role="doc-toc">
  92. $if(toc-title)$
  93. <h2 id="$idprefix$toc-title">$toc-title$</h2>
  94. $endif$
  95. $table-of-contents$
  96. </nav>
  97. $endif$
  98. $body$
  99. $for(include-after)$
  100. $include-after$
  101. $endfor$
  102. </body>
  103. </html>