mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-19 18:42:34 +00:00
14 lines
409 B
Plaintext
14 lines
409 B
Plaintext
{%- set valine_uri = theme.vendors.valine or '//unpkg.com/valine/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>
|