aboutsummaryrefslogtreecommitdiff
path: root/layouts/templates/main.html
blob: 917bdcec8f782488f021ab3b70c3372959752cd1 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title var="$page.title.suffix('|', $site.title)"></title>
    <link rel="stylesheet" href="/css/style.css"/>
    <link rel="stylesheet" href="/css/fonts.css"/>
  </head>

  <body>
    <nav>
    <ul class="menu">
      <li><a href="/">home</a></li>
      <li><a href="/">about</a></li>
      <li><a href="/">rss</a></li>
    </ul>
    <hr/>
    </nav>

    <div id="main">
        <super/>
    </div>

    <footer>
      {{ if or (.Params.author) (gt .Params.lastmod 0) }}
      <div class="article-meta">
      {{ with .Params.author }}Author <span class="author">{{ . }}</span><br/>{{ end }}
      {{ if (gt .Params.lastmod 0) }}Updated <span class="date">{{ .Lastmod.Format "January 02, 2006" }}</span><br/>{{ end }}
      </div>
      {{ end }}

    {{ if .Param "comments" }}
        <h2>comments</h2>
        <div style="visibility: hidden" id="comments">comments go here</div>
        <div style="visibility: hidden" id="comment_form">comment form goes here</div>
        <script>
         let comments = document.getElementById("comments");
         let urlParam = new URLSearchParams();
         urlParam.append("url", document.location.href);
         fetch(document.location.origin + "/api/comment?" + urlParam.toString())
              .then((response) => response.text())
              .then((data) => {
                   comments.innerHTML = data;
                   comments.style.visibility = "visible";
              });
         let form = document.getElementById("comment_form");
         fetch(document.location.origin + "/api/form?" + urlParam.toString())
              .then((response) => response.text())
              .then((data) => {
                   form.innerHTML = data;
                   form.style.visibility = "visible";
              });
        </script>
        <noscript>Comments disabled without javascript!</noscript>
    {{ end }}
    </footer>
  </body>
</html>