-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arthur Havlicek
authored and
Arthur Havlicek
committed
Oct 25, 2023
1 parent
f690d4c
commit b713567
Showing
1 changed file
with
80 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,80 @@ | ||
baseURL = 'http://example.org/' | ||
languageCode = 'en-us' | ||
title = 'My New Hugo Site' | ||
baseURL = "https://example.com" | ||
languageCode = "en-us" | ||
defaultContentLanguage = "en" | ||
title = "Hugo Hermit" | ||
theme = "hermit" | ||
# 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. | ||
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/ | ||
# googleAnalytics = "UA-123-45" | ||
# disqusShortname = "yourdiscussshortname" | ||
|
||
[author] | ||
name = "John Doe" | ||
|
||
[blackfriday] | ||
# hrefTargetBlank = true | ||
# noreferrerLinks = true | ||
# nofollowLinks = true | ||
|
||
[taxonomies] | ||
tag = "tags" | ||
# Categories are disabled by default. | ||
|
||
[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" | ||
|
||
homeSubtitle = "A minimal and fast theme for Hugo." | ||
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`. | ||
|
||
relatedPosts = false # Add a related content section to all single posts page | ||
|
||
code_copy_button = true # Turn on/off the code-copy-button for code-fields | ||
|
||
# Add custom css | ||
# customCSS = ["css/foo.css", "css/bar.css"] | ||
|
||
# Social Icons | ||
# Check https://github.com/Track3/hermit#social-icons for more info. | ||
[[params.social]] | ||
name = "twitter" | ||
url = "https://twitter.com/" | ||
|
||
[[params.social]] | ||
name = "instagram" | ||
url = "https://instagram.com/" | ||
|
||
[[params.social]] | ||
name = "github" | ||
url = "https://github.com/" | ||
|
||
[menu] | ||
|
||
[[menu.main]] | ||
name = "Posts" | ||
url = "posts/" | ||
weight = 10 | ||
|
||
[[menu.main]] | ||
name = "About" | ||
url = "about-hugo/" | ||
weight = 20 |