mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
16 lines
588 B
Plaintext
16 lines
588 B
Plaintext
{%- if is_home() %}
|
|
<script id="cy_cmt_num" src="https://changyan.sohu.com/upload/plugins/plugins.list.count.js?clientId={{ theme.changyan.appid }}"></script>
|
|
{% elif page.comments %}
|
|
<script>
|
|
NexT.utils.loadComments('#SOHUCS', () => {
|
|
NexT.utils.getScript('https://changyan.sohu.com/upload/changyan.js', () => {
|
|
window.changyan.api.config({
|
|
appid: '{{ theme.changyan.appid }}',
|
|
conf : '{{ theme.changyan.appkey }}'
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
<script src="https://assets.changyan.sohu.com/upload/plugins/plugins.count.js"></script>
|
|
{%- endif %}
|