这两天准备写点新博客,还没开始写又总觉得之前的主题虽然很好看也很符合我的审美,但还是有一丢丢“花里胡哨“,于是找到了Maupassant这个简洁一点的主题,感觉很符合我的气质(果然还是喜新厌旧😹)。

主题本身没有网站总的访问量和访客数统计,于是就自己参考了issue中的解决方案然后又各种尝试,最终成功获得了自己想要的样子,在这里也记录一下(虽然我的博客是写给自己的,但其实还是想看看有多少人看过了我的博客🤣,目前访客数貌似50+😀)。

themes\maupassant\layout\_partial\after_footer.pug里添加下面的代码。

1
2
if theme.busuanzi == true
script(src='https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js', async)

2. 修改foot.pug

themes\maupassant\layout\_partial\footer.pug里添加数据显示代码,完整内容如下。前面提到的各种尝试的主要原因还是不会jade语言,所以只能靠模仿别人的代码然后各种尝试,再次体会到了搜索能力的重要性。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#footer
= 'Copyright © ' + date(Date.now(), 'YYYY') + ' '
a(href=url_for('.'), rel='nofollow')= config.title + '.'
| Powered by
a(rel='nofollow', target='_blank', href='https://hexo.io') Hexo.
a(rel='nofollow', target='_blank', href='https://github.com/tufu9441/maupassant-hexo') Theme
| by
a(rel='nofollow', target='_blank', href='https://github.com/pagecho') Cho.
if theme.busuanzi == true
span(style={'font-size':'14px'})#busuanzi_container_site_pv
br
| 本站总访问量
span(rel='nofollow')#busuanzi_value_site_pv
| 人次,
span(style={'font-size':'14px'})#busuanzi_container_site_uv
| 访客数
span(rel='nofollow')#busuanzi_value_site_uv
| 人.

3. 开启不蒜子计数

themes\maupassant\ _config.yml开启不蒜子计数,即修改为busuanzi: true

完工!