main.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. <!-- Smartphone responsive design -->
  7. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8. $for(author-meta)$
  9. <meta name="author" content="$author-meta$" />
  10. <meta name="description" content="$description$">
  11. $endfor$
  12. $if(date-meta)$
  13. <meta name="dcterms.date" content="$date-meta$" />
  14. $endif$
  15. $if(keywords)$
  16. <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
  17. $endif$
  18. <link rel="shortcut icon" href="/favicon.ico"/>
  19. <!-- Google / Search Engine Tags -->
  20. <meta itemprop="name" content="$author-meta$">
  21. <meta itemprop="description" content="$description$">
  22. <meta itemprop="image" content="$shareImg$">
  23. <!-- Facebook Meta Tags -->
  24. <meta property="og:url" content="https://www.jovian-hersemeule.eu">
  25. <meta property="og:type" content="website">
  26. <meta property="og:title" content="$title$">
  27. <meta property="og:description" content="$description$">
  28. <meta property="og:image" content="$shareImg$">
  29. <!-- Twitter Meta Tags -->
  30. <meta name="twitter:card" content="summary_large_image">
  31. <meta name="twitter:title" content="$title$">
  32. <meta name="twitter:description" content="$description$">
  33. <meta name="twitter:image" content="$shareImg$">
  34. <!-- Meta Tags Generated via http://heymeta.com -->
  35. <!-- Style sheet -->
  36. <link href="/include/css/bootstrap.css" rel="stylesheet">
  37. <link href="/include/css/custom/main.css" rel="stylesheet">
  38. <link href="/include/css/custom/back-to-projects.css" rel="stylesheet">
  39. <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
  40. <style type="text/css">
  41. code{white-space: pre-wrap;}
  42. span.smallcaps{font-variant: small-caps;}
  43. span.underline{text-decoration: underline;}
  44. div.column{display: inline-block; vertical-align: top; width: 50%;}
  45. $if(quotes)$
  46. q { quotes: "“" "”" "‘" "’"; }
  47. $endif$
  48. </style>
  49. $if(highlighting-css)$
  50. <style type="text/css">
  51. $^$$highlighting-css$
  52. </style>
  53. $endif$
  54. $for(css)$
  55. <link rel="stylesheet" href="$css$" />
  56. $endfor$
  57. $if(math)$
  58. $^$$math$
  59. $endif$
  60. $for(header-includes)$
  61. $^$$header-includes$
  62. $endfor$
  63. </head>
  64. $^$${navbar()}
  65. <body>
  66. $for(include-before)$
  67. $^$$include-before$
  68. $endfor$
  69. <main role="main" class="container">
  70. $if(title)$
  71. <header id="title-block-header" class="focus-center">
  72. <h1 class="title">$title$</h1>
  73. $if(subtitle)$
  74. <p class="subtitle">$subtitle$</p>
  75. $endif$
  76. $for(author)$
  77. <p class="author">$author$</p>
  78. $endfor$
  79. $if(date)$
  80. <p class="date">$date$</p>
  81. $endif$
  82. $if(leadImgSrc)$
  83. <img src="$leadImgSrc$"$if(leadImgAlt)$ alt="$leadImgAlt$"$endif$>
  84. $endif$
  85. </header>
  86. $endif$
  87. $if(toc)$
  88. <nav id="$idprefix$TOC">
  89. $^$$table-of-contents$
  90. </nav>
  91. $endif$
  92. $^$$body$
  93. </main>
  94. $for(include-after)$
  95. $^$$include-after$
  96. $endfor$
  97. $^$${footer()}
  98. </body>
  99. </html>