mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-18 18:33:42 +00:00
11 lines
315 B
Plaintext
11 lines
315 B
Plaintext
{%- if page.comments %}
|
|
<script>
|
|
NexT.utils.loadComments('#isso-thread', () => {
|
|
const script = document.createElement('script');
|
|
script.src = '{{ theme.isso }}js/embed.min.js';
|
|
script.dataset.isso = '{{ theme.isso }}';
|
|
document.querySelector('#isso-thread').appendChild(script);
|
|
});
|
|
</script>
|
|
{%- endif %}
|