website init stub
This commit is contained in:
69
website/config/_default/hugo.toml
Normal file
69
website/config/_default/hugo.toml
Normal file
@@ -0,0 +1,69 @@
|
||||
# -- Site Configuration --
|
||||
# Refer to the theme docs for more details about each of these parameters.
|
||||
# https://blowfish.page/docs/getting-started/
|
||||
|
||||
theme = "blowfish" # UNCOMMENT THIS LINE
|
||||
# baseURL = "https://your_domain.com/"
|
||||
defaultContentLanguage = "en"
|
||||
|
||||
# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles
|
||||
|
||||
enableRobotsTXT = true
|
||||
summaryLength = 0
|
||||
|
||||
buildDrafts = false
|
||||
buildFuture = false
|
||||
|
||||
enableEmoji = true
|
||||
|
||||
# googleAnalytics = "G-XXXXXXXXX"
|
||||
|
||||
[pagination]
|
||||
pagerSize = 100
|
||||
|
||||
[imaging]
|
||||
anchor = 'Center'
|
||||
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
category = "categories"
|
||||
author = "authors"
|
||||
series = "series"
|
||||
|
||||
[sitemap]
|
||||
changefreq = 'daily'
|
||||
filename = 'sitemap.xml'
|
||||
priority = 0.5
|
||||
|
||||
[outputs]
|
||||
home = ["HTML", "RSS", "JSON"]
|
||||
|
||||
[related]
|
||||
threshold = 0
|
||||
toLower = false
|
||||
|
||||
[[related.indices]]
|
||||
name = "tags"
|
||||
weight = 100
|
||||
|
||||
[[related.indices]]
|
||||
name = "categories"
|
||||
weight = 100
|
||||
|
||||
[[related.indices]]
|
||||
name = "series"
|
||||
weight = 50
|
||||
|
||||
[[related.indices]]
|
||||
name = "authors"
|
||||
weight = 20
|
||||
|
||||
[[related.indices]]
|
||||
name = "date"
|
||||
weight = 10
|
||||
|
||||
[[related.indices]]
|
||||
applyFilter = false
|
||||
name = 'fragmentrefs'
|
||||
type = 'fragments'
|
||||
weight = 10
|
17
website/config/_default/languages.en.toml
Normal file
17
website/config/_default/languages.en.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
disabled = false
|
||||
languageCode = "en"
|
||||
languageName = "English"
|
||||
weight = 1
|
||||
title = "PlantCtrl"
|
||||
|
||||
[params]
|
||||
displayName = "EN"
|
||||
isoCode = "en"
|
||||
rtl = false
|
||||
dateFormat = "2 January 2006"
|
||||
logo = "example.png"
|
||||
description = "OpenSource DIY Watering and Monitoring for Plants"
|
||||
author = { name = "Empire-Phoenix", image = "author_logo.jpg" }
|
||||
|
||||
[author]
|
||||
image = "author_logo.jpg"
|
13
website/config/_default/markup.toml
Normal file
13
website/config/_default/markup.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
# -- Markup --
|
||||
# These settings are required for the theme to function.
|
||||
|
||||
[goldmark]
|
||||
[goldmark.renderer]
|
||||
unsafe = true
|
||||
|
||||
[highlight]
|
||||
noClasses = false
|
||||
|
||||
[tableOfContents]
|
||||
startLevel = 2
|
||||
endLevel = 4
|
35
website/config/_default/menus.en.toml
Normal file
35
website/config/_default/menus.en.toml
Normal file
@@ -0,0 +1,35 @@
|
||||
[[main]]
|
||||
none = "none"
|
||||
|
||||
[[main]]
|
||||
name = "About"
|
||||
pageRef = "About"
|
||||
identifier = "u4ojocQKbq"
|
||||
weight = 3
|
||||
|
||||
[[main]]
|
||||
name = "Hardware"
|
||||
pageRef = "Hardware"
|
||||
identifier = "SW5PLm3qOe"
|
||||
weight = 2
|
||||
|
||||
[[main]]
|
||||
name = "Software"
|
||||
pageRef = "Software"
|
||||
identifier = "CV6YgJ4EgV"
|
||||
weight = 1
|
||||
|
||||
[[footer]]
|
||||
none = "none"
|
||||
|
||||
[[footer]]
|
||||
name = "Impressum"
|
||||
pageRef = "Impressum"
|
||||
identifier = "T0q8Kgtn9Z"
|
||||
weight = 9999
|
||||
|
||||
[[footer]]
|
||||
name = "Gitea"
|
||||
url = "https://git.mannheim.ccc.de/C3MA/PlantCtrl"
|
||||
identifier = "kBzTWcgQqI"
|
||||
weight = 9999
|
3
website/config/_default/module.toml
Normal file
3
website/config/_default/module.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[hugoVersion]
|
||||
extended = false
|
||||
min = "0.87.0"
|
111
website/config/_default/params.toml
Normal file
111
website/config/_default/params.toml
Normal file
@@ -0,0 +1,111 @@
|
||||
colorScheme = "blowfish"
|
||||
defaultAppearance = "light"
|
||||
autoSwitchAppearance = true
|
||||
enableSearch = true
|
||||
enableCodeCopy = true
|
||||
replyByEmail = false
|
||||
disableImageOptimization = false
|
||||
disableTextInHeader = false
|
||||
giteaDefaultServer = "https://git.fsfe.org"
|
||||
forgejoDefaultServer = "https://v8.next.forgejo.org"
|
||||
defaultFeaturedImage = "example.png"
|
||||
smartTOC = true
|
||||
defaultBackgroundImage = "IMG_20240907_135042.jpg"
|
||||
|
||||
[header]
|
||||
layout = "basic"
|
||||
|
||||
[footer]
|
||||
showMenu = true
|
||||
showCopyright = true
|
||||
showThemeAttribution = true
|
||||
showAppearanceSwitcher = true
|
||||
showScrollToTop = true
|
||||
|
||||
[homepage]
|
||||
layout = "background"
|
||||
showRecent = true
|
||||
showRecentItems = 5
|
||||
showMoreLink = false
|
||||
showMoreLinkDest = "/posts/"
|
||||
cardView = true
|
||||
cardViewScreenWidth = false
|
||||
layoutBackgroundBlur = false
|
||||
homepageImage = "IMG_20240907_135042.jpg"
|
||||
|
||||
[article]
|
||||
showDate = true
|
||||
showViews = false
|
||||
showLikes = false
|
||||
showDateOnlyInArticle = false
|
||||
showDateUpdated = false
|
||||
showAuthor = true
|
||||
showHero = false
|
||||
layoutBackgroundBlur = true
|
||||
layoutBackgroundHeaderSpace = true
|
||||
showBreadcrumbs = false
|
||||
showDraftLabel = true
|
||||
showEdit = false
|
||||
editAppendPath = true
|
||||
seriesOpened = false
|
||||
showHeadingAnchors = true
|
||||
showPagination = true
|
||||
invertPagination = false
|
||||
showReadingTime = true
|
||||
showTableOfContents = false
|
||||
showTaxonomies = false
|
||||
showAuthorsBadges = false
|
||||
showWordCount = true
|
||||
showZenMode = false
|
||||
|
||||
[list]
|
||||
showHero = false
|
||||
layoutBackgroundBlur = true
|
||||
layoutBackgroundHeaderSpace = true
|
||||
showBreadcrumbs = false
|
||||
showSummary = true
|
||||
showViews = false
|
||||
showLikes = false
|
||||
showTableOfContents = false
|
||||
showCards = false
|
||||
orderByWeight = false
|
||||
groupByYear = true
|
||||
cardView = false
|
||||
cardViewScreenWidth = false
|
||||
constrainItemsWidth = false
|
||||
|
||||
[sitemap]
|
||||
excludedKinds = [ "taxonomy", "term" ]
|
||||
|
||||
[taxonomy]
|
||||
showTermCount = true
|
||||
showHero = ""
|
||||
showBreadcrumbs = false
|
||||
showViews = false
|
||||
showLikes = false
|
||||
showTableOfContents = false
|
||||
cardView = ""
|
||||
|
||||
[term]
|
||||
showHero = false
|
||||
showBreadcrumbs = false
|
||||
showViews = false
|
||||
showLikes = false
|
||||
showTableOfContents = true
|
||||
groupByYear = false
|
||||
cardView = false
|
||||
cardViewScreenWidth = false
|
||||
|
||||
[firebase]
|
||||
|
||||
[fathomAnalytics]
|
||||
|
||||
[umamiAnalytics]
|
||||
|
||||
[selineAnalytics]
|
||||
|
||||
[buymeacoffee]
|
||||
|
||||
[verification]
|
||||
|
||||
[rssnext]
|
Reference in New Issue
Block a user