mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 20:30:53 +08:00
22 lines
594 B
Plaintext
22 lines
594 B
Plaintext
- var d = theme.disqus && theme.disqus.enable
|
|
- var dj = theme.disqusjs && theme.disqusjs.enable
|
|
- var l = theme.laibili && theme.laibili.enable
|
|
- var gt = theme.gitalk && theme.gitalk.enable
|
|
- var v = theme.valine && theme.valine.enable
|
|
|
|
if d || dj || l || gt || v
|
|
hr
|
|
#post-comment
|
|
.comment_headling
|
|
i.fa.fa-comments.fa-fw(aria-hidden="true")
|
|
span= ' ' + _p('comment')
|
|
if d
|
|
include ./disqus.pug
|
|
else if dj
|
|
include ./disqusjs.pug
|
|
else if l
|
|
include ./laibili.pug
|
|
else if gt
|
|
include ./gitalk.pug
|
|
else if v
|
|
include ./valine.pug |