mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
13 lines
512 B
Plaintext
13 lines
512 B
Plaintext
{%- set serverURLs = theme.valine.serverURLs or 'https://' + theme.valine.appId.slice(0, 8) | lower + '.api.lncldglobal.com' %}
|
|
<script>
|
|
NexT.utils.loadComments('#valine-comments', () => {
|
|
NexT.utils.getScript('{{ theme.vendors.valine }}', () => {
|
|
new Valine(Object.assign({{ theme.valine | safedump }}, {
|
|
el: '#valine-comments',
|
|
path: {{ url_for(page.path) | replace(r/index\.html$/, '') | safedump }},
|
|
serverURLs: {{ serverURLs | safedump }}
|
|
}));
|
|
}, window.Valine);
|
|
});
|
|
</script>
|