mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-20 19:02:33 +00:00
13 lines
436 B
Plaintext
13 lines
436 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 }},
|
|
serverURLs: 'https://{{ theme.valine.appId.slice(0, 8) | lower }}.api.lncldglobal.com'
|
|
}, {{ theme.valine | safedump }}
|
|
));
|
|
}, window.Valine);
|
|
});
|
|
</script>
|