mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
14 lines
408 B
Plaintext
14 lines
408 B
Plaintext
{%- set valine_uri = theme.vendors.valine or '//cdn.jsdelivr.net/npm/valine@1/dist/Valine.min.js' %}
|
|
|
|
<script>
|
|
NexT.utils.loadComments(document.querySelector('#valine-comments'), () => {
|
|
NexT.utils.getScript('{{ valine_uri }}', () => {
|
|
new Valine(Object.assign({
|
|
el : '#valine-comments',
|
|
path: location.pathname,
|
|
}, {{ theme.valine | json }}
|
|
));
|
|
}, window.Valine);
|
|
});
|
|
</script>
|