Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

134 linhas
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. <div class="container">
  83. <div class="row">
  84. <div class="col text-center">
  85. $if(title)$
  86. <h1>$title$</h1>
  87. $if(subtitle)$
  88. <h2><em>$subtitle$</em></h2>
  89. $endif$
  90. $for(author)$
  91. <p class="lead">
  92. $author$$if(reviewer)$, $reviewer$$endif$$if(releaser)$, $releaser$$endif$
  93. </p>
  94. $endfor$
  95. $if(date)$
  96. <p class="lead">$date$
  97. $if(rev)$&mdash;rev.&nbsp;$rev$$endif$
  98. $if(hash)$&mdash;<code>$hash$</code>$endif$
  99. </p>
  100. $endif$
  101. $if(docnumber)$
  102. <p class="lead"><a href="$docnumber$.pdf" target="_blank">PDF version</a></p>
  103. $endif$
  104. $if(abstract)$
  105. <h3 class="text-center">Abstract</h3>
  106. <p class="text-justify">$abstract$</p>
  107. $endif$
  108. <hr>
  109. $endif$
  110. </div>
  111. </div>
  112. <div class="row">
  113. <div class="col">
  114. $if(toc)$
  115. <nav id="$idprefix$TOC">
  116. <h1>Table of Contents</h1>
  117. $table-of-contents$
  118. </nav>
  119. $endif$
  120. $body$
  121. </div>
  122. </div>
  123. </div>
  124. $for(include-after)$
  125. $include-after$
  126. $endfor$
  127. </body>
  128. </html>