blob: b905967d2402782b3c8ff102a040b35716167a28 (
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">
<h2 class="text-xl font-bold mb-2">Leave a comment</h2>
<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>
<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>
|