Become a backer or sponsor to support our work.
This module integrate the Staticman comments module with blog layout.
Module | github.com/hbstack/blog/modules/staticman |
---|---|
Repository | ⭐ Please consider giving a star if your like it. |
Stars | |
Version | |
Used by | |
Requirements | |
License | |
Usage | See how to use modules. |
The hb.blog.staticman
is taken as the name of Staticman parameters set.
hugo.toml
1[params]
2 [params.hb]
3 [params.hb.blog]
4 [params.hb.blog.staticman]
5 branch = 'main'
6 endpoint = 'https://staticman.hugomods.com/'
7 moderation = true
8 property = 'comments'
9 repo = 'user/repo'
10 service = 'github'
hugo.yaml
1params:
2 hb:
3 blog:
4 staticman:
5 branch: main
6 endpoint: https://staticman.hugomods.com/
7 moderation: true
8 property: comments
9 repo: user/repo
10 service: github
hugo.json
1{
2 "params": {
3 "hb": {
4 "blog": {
5 "staticman": {
6 "branch": "main",
7 "endpoint": "https://staticman.hugomods.com/",
8 "moderation": true,
9 "property": "comments",
10 "repo": "user/repo",
11 "service": "github"
12 }
13 }
14 }
15 }
16}
Learn more on Staticman parameters.
See also Staticman Configuration.