blob: f916e2bb05b268d9f5ff4b14da8873db48263d96 (
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
|
<section>
{% assign base_url = 'https://blog.uvokchee.de/notice/' %}
{% assign url = page.url %}
{% assign domain = 'https://blog.uvokchee.de' %}
{% assign full_url = domain | append: page.url %}
{% capture encoded_url %}{{ full_url | base64_encode }}{% endcapture %}
{% assign src_url = base_url | append: encoded_url %}
<!--
{{ base_url }}
{{ url }}
{{ full_url }}
{{ encoded_url }}
{{ src_url }}
-->
<h2>Kommentare / Comments</h2>
<h3>Isso</h3>
<p>Kommentare werden von mir selbst auf einem anderen Server über <a href="https://isso-comments.de/">Isso</a> gehostet.</p>
<p>Comments are hosted by myself on another server, powered by <a href="https://isso-comments.de/">Isso</a>.</p>
<script data-isso="//c.uvokchee.de/"
data-isso-require-author=true
data-isso-vote=false
src="//c.uvokchee.de/js/embed.min.js"></script>
<section id="isso-thread">
{% if jekyll.environment == "development" %}
{% include testc.html %}
{% endif %}
</section>
<h3>Fediverse</h3>
<script type="module">
import Comments from 'https://esm.run/@oom/mastodon-comments'
customElements.define('oom-comments', Comments)
</script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@oom/mastodon-comments/src/styles.css" >
<oom-comments src="{{ src_url }}">
None
</oom-comments>
<noscript>
<p>Um Kommentare zu hinterlassen, ist leider JavaScript nötig.</p>
<p>Unfortunately, JavaScript is required to leave comments</p>
</noscript>
</section>
|