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