mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-18 18:33:42 +00:00
12 lines
345 B
Plaintext
12 lines
345 B
Plaintext
<script>
|
|
NexT.utils.loadComments('#valine-comments', () => {
|
|
NexT.utils.getScript('{{ theme.vendors.valine }}', () => {
|
|
new Valine(Object.assign({
|
|
el : '#valine-comments',
|
|
path: {{ url_for(page.path) | replace(r/index\.html$/, '') | safedump }},
|
|
}, {{ theme.valine | safedump }}
|
|
));
|
|
}, window.Valine);
|
|
});
|
|
</script>
|