hermit-V2/hugo.toml

140 lines
4.4 KiB
TOML
Raw Normal View History

2023-07-09 12:10:00 -04:00
baseURL = "https://1bl4z3r.github.io/hermit-V2/" # baseURL - The absolute URL (protocol, host, path, and trailing slash) of your published site
2023-07-05 04:49:04 -04:00
2023-09-23 01:03:29 -04:00
# defaultContentLanguage - Content without language indicator will default to this language.
defaultContentLanguage = "en"
2023-07-05 04:49:04 -04:00
2023-09-23 01:03:29 -04:00
[languages]
[languages.en]
2023-10-15 08:13:22 -04:00
title = 'Hermit - V2'
2023-09-23 01:03:29 -04:00
[languages.en.params]
2023-10-15 08:13:22 -04:00
homeSubtitle = "Continuing Hermit's legacy to be minimal and fast theme"
2023-09-23 01:03:29 -04:00
weight = 1
[languages.fr]
2023-10-15 08:13:22 -04:00
title = 'Hermit - V2 (FR)'
2023-09-23 01:03:29 -04:00
[languages.fr.params]
2023-10-15 08:13:22 -04:00
homeSubtitle = "Poursuivre l'héritage d'Hermit avec un thème minimal et rapide"
2023-09-23 01:03:29 -04:00
weight = 2
[languages.it]
2023-10-15 08:13:22 -04:00
title = 'Hermit - V2 (IT)'
2023-09-23 01:03:29 -04:00
[languages.it.params]
2023-10-15 08:13:22 -04:00
homeSubtitle = "Continuare l'eredità di Hermit di essere un tema minimale e veloce"
2023-09-23 01:03:29 -04:00
weight = 3
defaultContentLanguageInSubdir = true
2023-07-05 04:49:04 -04:00
# 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
2018-10-23 01:15:50 -04:00
languageCode = "en-us"
2023-07-05 04:49:04 -04:00
2023-10-15 08:13:22 -04:00
# title = "Hermit - V2"
2023-07-05 04:49:04 -04:00
# 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
2018-10-23 01:15:50 -04:00
pygmentsCodefences = true
pygmentsUseClasses = true
2023-07-05 04:49:04 -04:00
# 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
2018-11-28 02:49:29 -05:00
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License." # This message is only used by the RSS template.
2023-07-05 04:49:04 -04:00
# Shorthand emojis in content files - https://gohugo.io/functions/emojify/
enableEmoji = true
2018-10-23 01:15:50 -04:00
# googleAnalytics = "UA-123-45"
# disqusShortname = "yourdiscussshortname"
[author]
2023-07-09 12:27:54 -04:00
name = "1BL4Z3R"
2023-09-23 01:03:29 -04:00
about = "about-hugo"
2018-10-23 01:15:50 -04:00
[blackfriday]
# hrefTargetBlank = true
# noreferrerLinks = true
# nofollowLinks = true
2018-10-23 01:15:50 -04:00
[taxonomies]
tag = "tags"
# Categories are disabled by default.
2018-10-23 01:15:50 -04:00
[params]
dateform = "Jan 2, 2006"
dateformShort = "Jan 2"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04 -0700"
# Metadata mostly used in document's head
# description = ""
# images = [""]
themeColor = "#494f5c"
2023-10-15 08:13:22 -04:00
#homeSubtitle = "Continuing Hermit's legacy to be minimal and fast theme"
2023-07-05 04:49:04 -04:00
2023-09-23 01:03:29 -04:00
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
# Prefix of link to the git commit detail page. GitInfo must be enabled.
# gitUrl = "https://github.com/username/repository/commit/"
# Toggling this option needs to rebuild SCSS, requires Hugo extended version
justifyContent = false # Set "text-align: justify" to `.content`.
2023-09-23 01:03:29 -04:00
relatedPosts = true # Add a related content section to all single posts page
code_copy_button = true # Turn on/off the code-copy-button for code-fields
2023-09-14 11:11:16 -04:00
# Social Icons
# Check https://github.com/Track3/hermit#social-icons for more info.
# ---------------------------------------------------
# Hugo - V2 specific configurations
# ---------------------------------------------------
# Below Allows homeSubtitle to be shown with printer animation effect. Refer Line 911 in style.scss
homeSubtitlePrinter = true
# To enable Scroll to Top button Sitewide
scrollToTop = true
2023-08-19 03:24:17 -04:00
# Enable global_mathjax to true, if you want MathJax support sitewide (if you have technical page)
# You can enable Per-Page MathJax support by adding `mathjax : true` in Page frontmatter
global_mathjax = false
2023-09-23 01:03:29 -04:00
# Toggle Reading time for articles
readTime = true
# Specify Separator between wordCount and readTime
readTimeSeparator = "\u002F||\u005C Reading Time:"
2023-09-14 11:11:16 -04:00
# ---------------------------------------------------
# Hugo - V2 specific configurations end
# ---------------------------------------------------
2018-10-23 01:15:50 -04:00
[[params.social]]
name = "twitter"
url = "https://twitter.com/"
[[params.social]]
2023-10-22 12:06:51 -04:00
name = "x"
url = "https://twitter.com/"
2018-10-23 01:15:50 -04:00
[[params.social]]
name = "github"
2023-10-22 05:57:12 -04:00
url = "https://github.com/1bl4z3r/hermit-V2/tree/staging"
2018-10-23 01:15:50 -04:00
[menu]
[[menu.main]]
name = "Posts"
2019-01-05 00:24:57 -05:00
url = "posts/"
2018-10-23 01:15:50 -04:00
weight = 10
[[menu.main]]
name = "About"
2019-01-05 00:24:57 -05:00
url = "about-hugo/"
2023-07-05 04:49:04 -04:00
weight = 20