Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

137 Zeilen
3.3KB

  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. $if(fontfamily_html)$
  18. <link href="https://fonts.googleapis.com/css?family=$fontfamily_html$" rel="stylesheet">
  19. $endif$
  20. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  21. <link href='https://fonts.googleapis.com/css?family=Libre+Baskerville' rel='stylesheet' type='text/css'>
  22. <style type="text/css">
  23. body {
  24. font-family: "Libre Baskerville", serif;
  25. hyphens: auto;
  26. }
  27. img {
  28. max-width: 100%;
  29. }
  30. @media (min-width: 768px) {
  31. h1 { font-size: 1.75rem; }
  32. h2 { font-size: 1.60rem; }
  33. h3 { font-size: 1.40rem; }
  34. h4 { font-size: 1.20rem; }
  35. h5 { font-size: 1.10rem; }
  36. h6 { font-size: 1.00rem; }
  37. }
  38. @media (max-width: 768px) {
  39. h1 { font-size: 1.35rem; }
  40. h2 { font-size: 1.25rem; }
  41. h3 { font-size: 1.10rem; }
  42. h4 { font-size: 1.10rem; }
  43. h5 { font-size: 1.00rem; }
  44. h6 { font-size: 1.00rem; }
  45. }
  46. code {
  47. padding: .2rem .5rem;
  48. white-space: nowrap;
  49. background: #F1F1F1;
  50. border: 1px solid #E1E1E1;
  51. border-radius: 4px; }
  52. pre > code {
  53. display: block;
  54. white-space: pre; }
  55. code{white-space: pre-wrap;}
  56. span.smallcaps{font-variant: small-caps;}
  57. span.underline{text-decoration: underline;}
  58. div.column{display: inline-block; vertical-align: top; width: 50%;}
  59. $if(quotes)$
  60. q { quotes: "“" "”" "‘" "’"; }
  61. $endif$
  62. </style>
  63. $if(highlighting-css)$
  64. <style type="text/css">
  65. $highlighting-css$
  66. </style>
  67. $endif$
  68. $for(css)$
  69. <link rel="stylesheet" href="$css$" />
  70. $endfor$
  71. $if(math)$
  72. $math$
  73. $endif$
  74. $for(header-includes)$
  75. $header-includes$
  76. $endfor$
  77. </head>
  78. <body>
  79. $for(include-before)$
  80. $include-before$
  81. $endfor$
  82. <!-- <span class="math display">\renewcommand\vec[1]{\mathbf{#1}}</span> -->
  83. <div class="container">
  84. <div class="row">
  85. <div class="col text-center">
  86. $if(title)$
  87. <h1>$title$</h1>
  88. $if(subtitle)$
  89. <h2><em>$subtitle$</em></h2>
  90. $endif$
  91. $for(author)$
  92. <p class="lead">
  93. $author$$if(reviewer)$, $reviewer$$endif$$if(releaser)$, $releaser$$endif$
  94. </p>
  95. $endfor$
  96. $if(date)$
  97. <p class="lead">$date$
  98. $if(rev)$&mdash;rev.&nbsp;$rev$$endif$
  99. $if(hash)$&mdash;<code>$hash$</code>$endif$
  100. </p>
  101. $endif$
  102. <p class="lead">
  103. <a href="nafems4.pdf" target="_blank">PDF</a>
  104. |
  105. <a href="nafems4.epub" target="_blank">EPUB</a>
  106. </p>
  107. $if(abstract)$
  108. <h3 class="text-center">Abstract</h3>
  109. <p class="text-justify">$abstract$</p>
  110. $endif$
  111. <hr>
  112. $endif$
  113. </div>
  114. </div>
  115. <div class="row">
  116. <div class="col">
  117. $if(toc)$
  118. <nav id="$idprefix$TOC">
  119. <h1>Table of Contents</h1>
  120. $table-of-contents$
  121. </nav>
  122. $endif$
  123. $body$
  124. </div>
  125. </div>
  126. </div>
  127. $for(include-after)$
  128. $include-after$
  129. $endfor$
  130. </body>
  131. </html>