Added : homeSubtitlePrinter
This commit is contained in:
56
hugo.toml
56
hugo.toml
@ -1,15 +1,53 @@
|
||||
baseURL = "https://example.com"
|
||||
baseURL = "https://example.com" # baseURL - The absolute URL (protocol, host, path, and trailing slash) of your published site
|
||||
|
||||
|
||||
#[languages]
|
||||
# [languages.en]
|
||||
# title = 'My blog'
|
||||
# weight = 1
|
||||
# [languages.en.params]
|
||||
# linkedin = 'https://linkedin.com/whoever'
|
||||
# [languages.fr]
|
||||
# title = 'Mon blogue'
|
||||
# weight = 2
|
||||
# [languages.fr.params]
|
||||
# linkedin = 'https://linkedin.com/fr/whoever'
|
||||
# [languages.it]
|
||||
# title = 'Il mio blog'
|
||||
# weight = 3
|
||||
# [languages.fr.params]
|
||||
# linkedin = 'https://linkedin.com/fr/whoever'
|
||||
|
||||
# languageCode - A language tag as defined by RFC 5646. This value is used to populate:
|
||||
# The <language> element in the internal RSS template
|
||||
# The lang attribute of the <html> element in the internal alias template
|
||||
languageCode = "en-us"
|
||||
|
||||
# defaultContentLanguage - Content without language indicator will default to this language.
|
||||
defaultContentLanguage = "en"
|
||||
|
||||
|
||||
# title - Site title
|
||||
title = "Hugo Hermit"
|
||||
theme = "hermit"
|
||||
# enableGitInfo = true
|
||||
|
||||
# enableGitInfo - Enable .GitInfo object for each page (if the Hugo site is versioned by Git). This will then update the Lastmod parameter for each page using the last git commit date for that content file.
|
||||
#enableGitInfo = true
|
||||
|
||||
|
||||
pygmentsCodefences = true
|
||||
pygmentsUseClasses = true
|
||||
# hasCJKLanguage = true # If Chinese/Japanese/Korean is your main content language, enable this to make wordCount works right.
|
||||
rssLimit = 10 # Maximum number of items in the RSS feed.
|
||||
|
||||
# If Chinese/Japanese/Korean is your main content language, enable this to make wordCount works right.
|
||||
#hasCJKLanguage = true
|
||||
|
||||
# Maximum number of items in the RSS feed.
|
||||
rssLimit = 10
|
||||
|
||||
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License." # This message is only used by the RSS template.
|
||||
enableEmoji = true # Shorthand emojis in content files - https://gohugo.io/functions/emojify/
|
||||
|
||||
# Shorthand emojis in content files - https://gohugo.io/functions/emojify/
|
||||
enableEmoji = true
|
||||
|
||||
# googleAnalytics = "UA-123-45"
|
||||
# disqusShortname = "yourdiscussshortname"
|
||||
|
||||
@ -37,6 +75,10 @@ enableEmoji = true # Shorthand emojis in content files - https://gohugo.io/func
|
||||
themeColor = "#494f5c"
|
||||
|
||||
homeSubtitle = "A minimal and fast theme for Hugo."
|
||||
|
||||
# Below Allows homeSubtitle to be shown with printer animation effect. Refer Line 911 in style.scss
|
||||
#homeSubtitlePrinter = true
|
||||
|
||||
footerCopyright = ' · <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
|
||||
# bgImg = "" # Homepage background-image URL
|
||||
|
||||
@ -77,4 +119,4 @@ enableEmoji = true # Shorthand emojis in content files - https://gohugo.io/func
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
url = "about-hugo/"
|
||||
weight = 20
|
||||
weight = 20
|
Reference in New Issue
Block a user