hugo congo主题各种配置
目录
hugo的congo主题下的各种配置记录。
评论系统 #
采用了giscus来配置评论系统,使用起来很方便,具体见 https://giscus.app/zh-CN 最后会生成类似于这样的script
<script src="https://giscus.app/client.js"
data-repo="xx"
data-repo-id="xx"
data-category="Announcements"
data-category-id="xx"
data-mapping="pathname"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="top"
data-theme="preferred_color_scheme"
data-lang="zh-CN"
data-loading="lazy"
crossorigin="anonymous"
async>
</script>
参考 congo的文档 https://jpanther.github.io/congo/docs/partials/#comments, 把congo theme 自带的 layouts copy到hugo site的根目录下,然后新建一个 layouts/partials/comments.html
,贴上 giscus的 script,最后开启params.toml
下的showComments = true
就行
网站流量统计 #
使用umami + vercel + supabase 进行免费部署 参考:
- https://guangzhengli.com/blog/zh/how-to-integrate-umami-for-free-to-blog-site/
- https://weaxsey.org/articels/hugo-+-umami-%E7%9B%91%E6%8E%A7%E9%9D%A2%E6%9D%BF/