hexo-theme-next
Version:
Elegant and powerful theme for Hexo.
21 lines (14 loc) • 572 B
JavaScript
/* global hexo */
;
const path = require('path');
// Add comment
hexo.extend.filter.register('theme_inject', injects => {
const config = hexo.theme.config.disqusjs;
if (!config.enable || !config.shortname || !config.apikey) return;
injects.comment.raw('disqusjs', `
<div class="comments disqusjs-container">
<noscript>Please enable JavaScript to view the comments powered by Disqus.</noscript>
</div>
`, {}, { cache: true });
injects.bodyEnd.file('disqusjs', path.join(hexo.theme_dir, 'layout/_third-party/comments/disqusjs.njk'));
});