Initial Commit
This commit is contained in:
21
config/_default/hugo.toml
Normal file
21
config/_default/hugo.toml
Normal file
@ -0,0 +1,21 @@
|
||||
# The base URL for the site.
|
||||
baseURL = 'https://comprofix.com'
|
||||
# The title of the site.
|
||||
title = 'Comprofix'
|
||||
|
||||
# Enable Git info › https://gohugo.io/methods/page/gitinfo/
|
||||
enableGitInfo = false
|
||||
|
||||
|
||||
# Pagination settings.
|
||||
[pagination]
|
||||
pagerSize = 5
|
||||
|
||||
# Make sure to include JSON output to support the search functionality.
|
||||
[outputs]
|
||||
home = ["HTML", "RSS", "JSON"]
|
||||
|
||||
# Import the theme.
|
||||
[module]
|
||||
[[module.imports]]
|
||||
path = "git.comprofix.com/mmckinnon/hugo-theme-chirpy"
|
24
config/_default/markup.toml
Normal file
24
config/_default/markup.toml
Normal file
@ -0,0 +1,24 @@
|
||||
# Code highlighting settings.
|
||||
[highlight]
|
||||
anchorLineNos = false
|
||||
codeFences = true
|
||||
guessSyntax = true
|
||||
hl_Lines = ''
|
||||
hl_inline = false
|
||||
lineAnchors = ''
|
||||
lineNoStart = 1
|
||||
lineNos = true
|
||||
lineNumbersInTable = true
|
||||
noClasses = false
|
||||
tabWidth = 4
|
||||
wrapperClass = 'highlight'
|
||||
|
||||
[goldmark.parser]
|
||||
wrapStandAloneImageWithinParagraph = false
|
||||
|
||||
[goldmark.parser.attribute]
|
||||
block = true
|
||||
title = true
|
||||
|
||||
[goldmark.renderer]
|
||||
unsafe = true
|
68
config/_default/params.toml
Normal file
68
config/_default/params.toml
Normal file
@ -0,0 +1,68 @@
|
||||
# boolean type, the global switch for TOC in posts.
|
||||
toc = true
|
||||
# the avatar on sidebar, should be a relative path to /assets.
|
||||
avatar = "img/man-logo.png"
|
||||
author = "Comprofix"
|
||||
|
||||
tagline = "Geek | Nerd | Systems Administrator | IT Specialist" # it will display as the subtitle
|
||||
|
||||
|
||||
[assets]
|
||||
# Self-hosted static assets, default to false. If true, the assets will be hosted on your own server.
|
||||
self_host = false
|
||||
|
||||
[social]
|
||||
name = "Comprofix"
|
||||
url = "https://comprofix.com"
|
||||
|
||||
[[social.links]]
|
||||
type = "custom"
|
||||
id = "https://git.comprofix.com/mmckinnon"
|
||||
icon = "fab fa-git-alt"
|
||||
|
||||
[[social.links]]
|
||||
type = "twitter"
|
||||
id = "mckinnon81"
|
||||
icon = "fab fa-twitter"
|
||||
|
||||
|
||||
[[social.links]]
|
||||
type = "rss"
|
||||
icon = "fas fa-rss"
|
||||
noblank = true # will not open in new window
|
||||
|
||||
[comments]
|
||||
# Global switch for the post-comment system. [true | false]
|
||||
enable = false
|
||||
# The provider options are as follows: [disqus | utterances | giscus]
|
||||
provider = ""
|
||||
|
||||
# Disqus options
|
||||
[comments.disqus]
|
||||
# fill with the Disqus shortname. › https://help.disqus.com/en/articles/1717111-what-s-a-shortname
|
||||
shortname = ""
|
||||
|
||||
# utterances settings › https://utteranc.es/
|
||||
[comments.utterances]
|
||||
# <gh-username>/<repo>
|
||||
repo = ""
|
||||
# < url | pathname | title | ...>
|
||||
issue_term = ""
|
||||
|
||||
# Giscus options › https://giscus.app
|
||||
[comments.giscus]
|
||||
# <gh-username>/<repo>
|
||||
repo = ""
|
||||
repo_id = ""
|
||||
category = ""
|
||||
category_id = ""
|
||||
# optional, default to 'pathname'
|
||||
mapping = ""
|
||||
# optional, default to '0'
|
||||
strict = ""
|
||||
# optional, default to 'bottom'
|
||||
input_position = ""
|
||||
# optional, default to site language
|
||||
lang = ""
|
||||
# optional, default to the value of `1`
|
||||
reactions_enabled = ""
|
Reference in New Issue
Block a user