hugo updates
Some checks failed
Hugo Update Pipeline / Explore-Gitea-Actions (push) Has been cancelled
Some checks failed
Hugo Update Pipeline / Explore-Gitea-Actions (push) Has been cancelled
This commit is contained in:
Submodule content/posts updated: 8bdfd2d552...a996695bfc
160
hugo.toml
160
hugo.toml
@ -7,99 +7,105 @@ theme = "terminal"
|
|||||||
pagination.pagerSize = 5
|
pagination.pagerSize = 5
|
||||||
# Required for Chroma and the custom syntax highlighting.
|
# Required for Chroma and the custom syntax highlighting.
|
||||||
[markup.highlight]
|
[markup.highlight]
|
||||||
noClasses = false
|
noClasses = false
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
# dir name of your main content (default is `content/posts`).
|
# dir name of your main content (default is `content/posts`).
|
||||||
# the list of set content will show up on your index page (baseurl).
|
# the list of set content will show up on your index page (baseurl).
|
||||||
contentTypeName = "posts"
|
contentTypeName = "posts"
|
||||||
|
|
||||||
# if you set this to 0, only submenu trigger will be visible
|
# if you set this to 0, only submenu trigger will be visible
|
||||||
showMenuItems = 2
|
showMenuItems = 2
|
||||||
|
|
||||||
# show selector to switch language
|
# show selector to switch language
|
||||||
showLanguageSelector = false
|
showLanguageSelector = false
|
||||||
|
|
||||||
# set theme to full screen width
|
# set theme to full screen width
|
||||||
fullWidthTheme = false
|
fullWidthTheme = false
|
||||||
|
|
||||||
# center theme with default width
|
# center theme with default width
|
||||||
centerTheme = false
|
centerTheme = false
|
||||||
|
|
||||||
# if your resource directory contains an image called `cover.(jpg|png|webp)`,
|
# if your resource directory contains an image called `cover.(jpg|png|webp)`,
|
||||||
# then the file will be used as a cover automatically.
|
# then the file will be used as a cover automatically.
|
||||||
# With this option you don't have to put the `cover` param in a front-matter.
|
# With this option you don't have to put the `cover` param in a front-matter.
|
||||||
autoCover = true
|
autoCover = true
|
||||||
|
|
||||||
# set post to show the last updated
|
# set post to show the last updated
|
||||||
# If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
|
# If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
|
||||||
showLastUpdated = false
|
showLastUpdated = false
|
||||||
|
|
||||||
# Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author
|
# Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author
|
||||||
# updatedDatePrefix = "Updated"
|
# updatedDatePrefix = "Updated"
|
||||||
|
|
||||||
# whether to show a page's estimated reading time
|
# whether to show a page's estimated reading time
|
||||||
# readingTime = false # default
|
# readingTime = false # default
|
||||||
|
|
||||||
# whether to show a table of contents
|
# whether to show a table of contents
|
||||||
# can be overridden in a page's front-matter
|
# can be overridden in a page's front-matter
|
||||||
# Toc = false # default
|
# Toc = false # default
|
||||||
|
|
||||||
# set title for the table of contents
|
# set title for the table of contents
|
||||||
# can be overridden in a page's front-matter
|
# can be overridden in a page's front-matter
|
||||||
# TocTitle = "Table of Contents" # default
|
# TocTitle = "Table of Contents" # default
|
||||||
|
|
||||||
# Set date/time format for posts
|
# Set date/time format for posts
|
||||||
# This will impact the date/time displayed on
|
# This will impact the date/time displayed on
|
||||||
# index.html, the posts list page, and on posts themselves
|
# index.html, the posts list page, and on posts themselves
|
||||||
# This value can also be configured per-post on front matter
|
# This value can also be configured per-post on front matter
|
||||||
# If you have any issues with the timezone rendering differently
|
# If you have any issues with the timezone rendering differently
|
||||||
# than you expected, please ensure your timezone is correctly set
|
# than you expected, please ensure your timezone is correctly set
|
||||||
# on your server.
|
# on your server.
|
||||||
# This value can be customized according to Hugo documentation:
|
# This value can be customized according to Hugo documentation:
|
||||||
# https://gohugo.io/functions/time/format/
|
# https://gohugo.io/functions/time/format/
|
||||||
# Default value (no changes needed):
|
# Default value (no changes needed):
|
||||||
# dateFormat = "2006-01-02"
|
# dateFormat = "2006-01-02"
|
||||||
# Example format, with date, time, and timezone abbreviation:
|
# Example format, with date, time, and timezone abbreviation:
|
||||||
# dateFormat = "2006-01-02 3:04:06 PM MST"
|
# dateFormat = "2006-01-02 3:04:06 PM MST"
|
||||||
|
|
||||||
[languages]
|
[languages]
|
||||||
[languages.en]
|
[languages.en]
|
||||||
languageName = "English"
|
languageName = "English"
|
||||||
title = "Richard Blog"
|
title = "Richard Blog"
|
||||||
|
|
||||||
[languages.en.params]
|
[languages.en.params]
|
||||||
#subtitle = ""
|
#subtitle = ""
|
||||||
owner = ""
|
owner = ""
|
||||||
keywords = ""
|
keywords = ""
|
||||||
copyright = ""
|
copyright = ""
|
||||||
menuMore = "Show more"
|
menuMore = "Show more"
|
||||||
readMore = "Read more"
|
readMore = "Read more"
|
||||||
readOtherPosts = "Read other posts"
|
readOtherPosts = "Read other posts"
|
||||||
newerPosts = "Newer posts"
|
newerPosts = "Newer posts"
|
||||||
olderPosts = "Older posts"
|
olderPosts = "Older posts"
|
||||||
missingContentMessage = "Page not found..."
|
missingContentMessage = "Page not found..."
|
||||||
missingBackButtonLabel = "Back to home page"
|
missingBackButtonLabel = "Back to home page"
|
||||||
minuteReadingTime = "min read"
|
minuteReadingTime = "min read"
|
||||||
words = "words"
|
words = "words"
|
||||||
|
|
||||||
[languages.en.params.logo]
|
[languages.en.params.logo]
|
||||||
logoText = "Richard Blog"
|
logoText = "Richard Blog"
|
||||||
logoHomeLink = "/"
|
logoHomeLink = "/"
|
||||||
|
|
||||||
[languages.en.menu]
|
[languages.en.menu]
|
||||||
[[languages.en.menu.main]]
|
[[languages.en.menu.main]]
|
||||||
identifier = "about"
|
identifier = "about"
|
||||||
name = "About"
|
name = "About"
|
||||||
url = "/about"
|
url = "/about"
|
||||||
[[languages.en.menu.main]]
|
[[languages.en.menu.main]]
|
||||||
identifier = "showcase"
|
identifier = "showcase"
|
||||||
name = "Showcase"
|
name = "Showcase"
|
||||||
url = "/showcase"
|
url = "/showcase"
|
||||||
[markup]
|
[markup]
|
||||||
[markup.goldmark]
|
[markup.goldmark]
|
||||||
[markup.goldmark.renderHooks]
|
[markup.goldmark.renderHooks]
|
||||||
[markup.goldmark.renderHooks.image]
|
[markup.goldmark.renderHooks.image]
|
||||||
enableDefault = true
|
enableDefault = true
|
||||||
[markup.goldmark.renderHooks.link]
|
[markup.goldmark.renderHooks.link]
|
||||||
enableDefault = true
|
enableDefault = true
|
||||||
|
|
||||||
|
|
||||||
|
[module]
|
||||||
|
[[module.mounts]]
|
||||||
|
source = 'attachments'
|
||||||
|
target = 'content/posts/attachments'
|
||||||
|
Reference in New Issue
Block a user