Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

87 lines
2.0KB

  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="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="description" content="">
  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. <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
  17. <link type="text/css" rel="stylesheet" href="css/normalize.css">
  18. <link type="text/css" rel="stylesheet" href="css/skeleton.css">
  19. <link type="text/css" rel="stylesheet" href="css/style.css" />
  20. <style type="text/css">
  21. code{white-space: pre-wrap;}
  22. span.smallcaps{font-variant: small-caps;}
  23. span.underline{text-decoration: underline;}
  24. div.column{display: inline-block; vertical-align: top; width: 50%;}
  25. $if(quotes)$
  26. q { quotes: "“" "”" "‘" "’"; }
  27. $endif$
  28. </style>
  29. $if(highlighting-css)$
  30. <style type="text/css">
  31. $highlighting-css$
  32. </style>
  33. $endif$
  34. $for(css)$
  35. <link rel="stylesheet" href="$css$" />
  36. $endfor$
  37. $if(math)$
  38. $math$
  39. $endif$
  40. $for(header-includes)$
  41. $header-includes$
  42. $endfor$
  43. </head>
  44. <body>
  45. $for(include-before)$
  46. $include-before$
  47. $endfor$
  48. <div class="container">
  49. <div class="row">
  50. $if(title)$
  51. <header style="text-align: center" id="title-block-header">
  52. <h1 class="title">$title$</h1>
  53. $if(subtitle)$
  54. <p class="subtitle">$subtitle$</p>
  55. $endif$
  56. $for(author)$
  57. <p class="author">$author$</p>
  58. $endfor$
  59. $if(date)$
  60. <p class="date">$date$
  61. $if(hash)$
  62. ($hash$)
  63. $endif$
  64. </p>
  65. $endif$
  66. $if(abstract)$
  67. <h3 style="text-center">Abstract</h3>
  68. <blockquote>$abstract$</blockquote>
  69. $endif$
  70. </header>
  71. <hr>
  72. $endif$
  73. $if(toc)$
  74. <nav id="$idprefix$TOC">
  75. <h1>Table of Contents</h1>
  76. $table-of-contents$
  77. </nav>
  78. $endif$
  79. $body$
  80. </div>
  81. </div>
  82. $for(include-after)$
  83. $include-after$
  84. $endfor$
  85. </body>
  86. </html>