hexo-theme-next
Version:
Elegant and powerful theme for Hexo.
17 lines (10 loc) • 422 B
JavaScript
/* global hexo */
;
const path = require('path');
// Add comment
hexo.extend.filter.register('theme_inject', injects => {
const theme = hexo.theme.config;
if (!theme.gitalk.enable) return;
injects.comment.raw('gitalk', '<div class="comments gitalk-container"></div>', {}, { cache: true });
injects.bodyEnd.file('gitalk', path.join(hexo.theme_dir, 'layout/_third-party/comments/gitalk.njk'));
});