summaryrefslogtreecommitdiff
path: root/layouts/page.njk
blob: 71912c3ffa25eab77602c5e646cfbe8d44de7e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en-US">
  <head>
    <title>{{ pageTitle }}</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="author" content="{{ metadata.author.name }}">
    {% if metaDesc %}<meta name="description" content="{{ metaDesc }}">{% endif %}
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Sans+JP:wght@400;700&display=swap">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.min.css">
    <link rel="stylesheet" href="/style.css">
    <link rel="icon" href="/favicon.png">
  </head>
  <body>
    <main>
      <div id="invert" title="Invert Colors"></div>
{{ content | safe }}
    </main>

    <script src="/main.js"></script>
  </body>
</html>