Clean hand-crafted theme for Hugo.
$ git branch
main # the main development branch where all pull requests will be merged to
gh-pages # the branch that GitHub pages will serve the files from
id-your-feature # additional development branches for new features
main
branch, create a new branch for your feature, (ideally) using id-your-feature
as the format.main
.Gitpod
button on the issue you created.main
.Webpack:
npm install
# run development server
npm run start
# build for prod
npm run build
Hugo server:
# locally
hugo server \
--source "./exampleSite" \
--destination "../public" \
--themesDir "../.." \
--verbose
# via gitpod
hugo server \
--baseUrl $(gp url 1313) \
--appendPort=false \
--source "./exampleSite" \
--destination "../public" \
--themesDir "../.." \
--verbose
This theme uses Utterances for the comments. Follow the configuration instructions to install the app to your repository.
Add the following to your config.toml
:
[params.utterances]
repo = "repo-owner/comments-repo-name"
theme = "preferred-color-scheme"
issueTerm = "pathname"
issueNumber = ""
issueLabel = ""
attribute | description | choices | default |
---|---|---|---|
repo |
The repository that Utterances will use. | "" |
|
theme |
Choose an Utterances theme that matches your blog. | "github-light" , "github-dark" , "github-dark-orange" , "icy-dark" , "dark-blue" , "photon-dark" , "preferred-color-scheme" |
"github-light" |
issueTerm |
Choose the mapping between blog posts and GitHub issues. See description of each value below. | "pathname" , "url" , "title" , "og:title" , "" |
"pathname" |
issueNumber |
You configure Utterances to load a specific issue by number. You can use this instead of issueTerm . Note that issues are not automatically created. |
"" |
|
issueLabel |
The label that will be assigned to issues created by Utterances. | "" |
issueTerm
"pathname"
- Utterances will search for an issue whose title contains the blog post's pathname URL component."url"
- Utterances will search for an issue whose title contains the blog post's URL."title"
- Utterances will search for an issue whose title contains the blog post's title."og:title"
- Utterances will search for an issue whose title contains the page's Open Graph title meta.""
- You configure Utterances to search for an issue whose title contains a specific term of your choosing. The issue's title will be the term you chose.If a matching issue is not found, Utterances will automatically create one the first time someone comments on your post.
Add the following to your front matter:
disableComments: true
This releases under the MIT License.