mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
22 lines
786 B
HTML
22 lines
786 B
HTML
<script>
|
|
'use strict';
|
|
|
|
(function() {
|
|
var commentContainer = document.querySelector('#utterances-comments');
|
|
|
|
if (!commentContainer) {
|
|
return;
|
|
}
|
|
|
|
var script = document.createElement('script');
|
|
script.setAttribute('src', 'https://utteranc.es/client.js');
|
|
script.setAttribute('repo', '{{ site.repository }}');
|
|
script.setAttribute('issue-term', '{{ site.comments.utterances.issue_term | default: "pathname" }}');
|
|
{% if site.comments.utterances.label %}script.setAttribute('label', '{{ site.comments.utterances.label }}');{% endif %}
|
|
script.setAttribute('theme', '{{ site.comments.utterances.theme | default: "github-light" }}');
|
|
script.setAttribute('crossorigin', 'anonymous');
|
|
|
|
commentContainer.appendChild(script);
|
|
})();
|
|
</script>
|