summaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: ad4c7edd53c48704101bdbd7518ec6dd6c6faf43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
  <title>{{ page.title }}</title>
  <meta charset="utf-8"/>
  <meta name="viewport" content="width=device-width"/>
  <link rel="icon" type="image/jpg" href="https://apropos.codes/assets/light.png"/>
  <link rel="stylesheet" href="https://apropos.codes/css/style.css"/>
  <link rel="stylesheet" href="https://apropos.codes/writeups/css/style.css"/>
  <link rel="stylesheet" href="https://apropos.codes/css/katex.css" crossorigin="anonymous">
  <script defer src="https://apropos.codes/js/katex.js" crossorigin="anonymous"></script>
  <script defer src="https://apropos.codes/js/auto-render.js" crossorigin="anonymous"
          onload='renderMathInElement(document.body, {delimiters: [
                  {left: "$$", right: "$$", display: true},
                  {left: "\\(", right: "\\)", display: false},
                  {left: "\\[", right: "\\]", display: true},
                  {left: "$", right: "$", display: false}
          ]});'>
  </script>
  <style>
    header { padding-bottom: 1em; }
  </style>
</head>
<body>
{{ content }}
</body>
</html>