You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
945 B
945 B
| title | date | tags | categories |
|---|---|---|---|
| 为Hexo博客Next主题添加Schnack评论 | 2017-12-21 17:11:31 | [vps hexo] | vps |
本文主要记录schnack评论搭建步骤(服务端搭建未完成)。
Step 1
在%BLOG_PATH%\themes\next\layout\_third-party\comments路径下创建schnack.swig文件
{% if theme.schnack and theme.schnack.enable %}
<script src="//blog.oaoa.me/embed.js"
data-schnack-slug="post-slug"
data-schnack-target=".comments">
</script>
{% endif %}
Step 2
在%BLOG_PATH%\themes\next\layout\_third-party\comments\index.swig文件中添加schnack.swig的引用
{% include 'schnack.swig' %}
Step 3
在%BLOG_PATH%\themes\next\layout\_partials\comments.swig文件中,添加一个elseif代码块:
{% elseif theme.schnack and schnack.enable %}
<div class="comments" id="comments">
</div>
Step 4
TODO: 服务端配置