AmazingRise / hugo-theme-diary

Moments piled up. A Hugo theme ported from SumiMakito/hexo-theme-Journal.
MIT License
556 stars 189 forks source link

would you please add a visiting stats banner at the most left bottom ? #142

Closed ClarkThan closed 1 year ago

ClarkThan commented 1 year ago

I mean looks like this snapchat

image
AmazingRise commented 1 year ago

Hi ClarkThan, Try busuanzi or Waline.

For busuanzi, you can append its code to layouts/partials/copyright.html(it's the de facto global footer).

For Waline, read the guide. Since we have integrated Waline, you can find its configuration here: https://github.com/AmazingRise/hugo-theme-diary/blob/bad0d28ed269fe2d7ea3c6e252dbaedc8fd4c74e/layouts/partials/comment.html#L66 Please add pageview: true to its configuration, and add pageview code to copyright.html:

Pageviews: <i class="waline-pageview-count" data-path="{{ .Page.RelPermalink }}"></i>
ClarkThan commented 1 year ago

Hi ClarkThan, Try busuanzi or Waline.

For busuanzi, you can append its code to layouts/partials/copyright.html(it's the de facto global footer).

For Waline, read the guide. Since we have integrated Waline, you can find its configuration here:

https://github.com/AmazingRise/hugo-theme-diary/blob/bad0d28ed269fe2d7ea3c6e252dbaedc8fd4c74e/layouts/partials/comment.html#L66

Please add pageview: true to its configuration, and add pageview code to copyright.html:

Pageviews: <i class="waline-pageview-count" data-path="{{ .Page.RelPermalink }}"></i>

thanks, appreciate your solutions