aboutsummaryrefslogtreecommitdiff
path: root/themes/simple/layouts/partials/comments.html
blob: 7978917ef8ad755cdc3d2ec9d6360a38b6157613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<section class="comments">
  <p class="mb-4">You can write me an email at <a href="mailto:m@mitjafelicijan.com" class="underline hover:bg-yellow-100">m@mitjafelicijan.com</a> or comment bellow.</p>
  <div id="comment-section"></div>

  <script type="text/javascript" src="https://latest.cactus.chat/cactus.js"></script>
  <link rel="stylesheet" href="_https://latest.cactus.chat/style.css" type="text/css">

  <script>
    window.addEventListener('load', () => {
      initComments({
        node: document.getElementById("comment-section"),
        defaultHomeserverUrl: "https://matrix.cactus.chat:8448",
        serverName: "cactus.chat",
        siteName: "mitjafelicijan.com",
        commentSectionId: "{{.File}}",
        pageSize: 50,
        updateInterval: 10,
      });
    });
  </script>
</section>