hugo 增加 访问统计
选择统计工具 使用自己写的工具 使用不蒜子 使用 Vercount 修改文件 修改配置文件(增加开关) 修改 hugo.yaml 1 2 3 4 params: addons: vercount: # Vercount 网站计数器 https://github.com/EvanNotFound/vercount enable: true 修改页面 修改 themes/PaperMod/layouts/partials/extend_footer.html 增加以下内容 1 2 3 4 5 6 7 8 9 10 11 12 13 {{- /* Footer custom content area start */ -}} {{- /* Insert any custom code web-analytics, resources, etc. here */ -}} {{ if .Site.Params.addons.vercount.enable -}} <script defer src="https://events.vercount.one/js"></script> <footer class="footer"> <span> 总访问次数:<span id="vercount_value_site_pv">Loading</span> 次(<span...