You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
3.2KB

  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"><a href="nafems4.pdf" target="_blank">PDF version</a></p>
  103. $if(abstract)$
  104. <h3 class="text-center">Abstract</h3>
  105. <p class="text-justify">$abstract$</p>
  106. $endif$
  107. <hr>
  108. $endif$
  109. </div>
  110. </div>
  111. <div class="row">
  112. <div class="col">
  113. $if(toc)$
  114. <nav id="$idprefix$TOC">
  115. <h1>Table of Contents</h1>
  116. $table-of-contents$
  117. </nav>
  118. $endif$
  119. $body$
  120. </div>
  121. </div>
  122. </div>
  123. $for(include-after)$
  124. $include-after$
  125. $endfor$
  126. </body>
  127. </html>