86 lines
2.3 KiB
TOML
86 lines
2.3 KiB
TOML
baseURL = "https://gebuehr.net"
|
||
languageCode = "de"
|
||
defaultContentLanguage = 'de'
|
||
title = "Gebühr.net"
|
||
theme = "color-your-world"
|
||
|
||
relativeURLs=true
|
||
|
||
|
||
copyright = "Copyright © Daniel & Julian-Samuel Gebühr"
|
||
|
||
[params]
|
||
|
||
# Site description
|
||
description = "Website der Familie Gebühr"
|
||
|
||
# Author
|
||
author = "Julian-Samuel Gebühr"
|
||
authorDesc = "Medizininformatiker, Open Source Entwickler"
|
||
|
||
# Footer text
|
||
# Each value will become a paragraph
|
||
# Keep it as an array
|
||
footerText = [ "Generated with [Hugo](https://gohugo.io) using the [Color Your World](https://gitlab.com/moanos/hugo-theme-color-your-world) theme." ]
|
||
|
||
# Site cover, for Open Graph, Twitter Cards and Schema.org
|
||
# It will be used if the current page doesn't have an image cover
|
||
# File will be picked from the "assets" directory
|
||
# Comment the lines if you don't want to use it
|
||
cover = "img/cover.jpg"
|
||
coverAlt = ""
|
||
|
||
# Shows a message in the footer about JavaScript being disabled
|
||
# The default is false
|
||
hasNoscriptNotice = true
|
||
|
||
# Default path for images in posts
|
||
# ie.: "content/some-post/img"
|
||
# Can also be set PER PAGE
|
||
# It can be used to reduce repetition
|
||
# There's no default value
|
||
imgPath = "img"
|
||
|
||
# Default classes for markup image
|
||
# Modifies the default behavior of images placed via markdown
|
||
# Can also be set PER PAGE via front matter
|
||
# Available classes are: border and borderless
|
||
# There's no default value
|
||
markupImgClass = "borderless"
|
||
|
||
# This will append a separator (of your choice) along the site title to your <title>
|
||
# ie.: | ❚ - – — • ⚫
|
||
# You can disabled it PER PAGE by using "disableTitleSeparator" at front
|
||
# matter or disable it entirely by commenting the line below
|
||
titleSeparator = "|"
|
||
|
||
|
||
|
||
[languages]
|
||
[languages.de]
|
||
languageName = 'Deutsch'
|
||
weight = 1
|
||
[languages.de.menu]
|
||
[[languages.de.menu.main]]
|
||
name = 'Kontakt'
|
||
pageRef = '/kontakt'
|
||
weight = 10
|
||
[[languages.de.menu.main]]
|
||
name = 'Impressum'
|
||
pageRef = '/impressum'
|
||
weight = 20
|
||
[languages.en]
|
||
languageCode = 'en'
|
||
languageName = 'English'
|
||
weight = 2
|
||
[languages.en.menu]
|
||
[[languages.en.menu.main]]
|
||
name = 'Contact'
|
||
pageRef = '/kontakt'
|
||
weight = 10
|
||
[[languages.en.menu.main]]
|
||
name = 'Imprint'
|
||
pageRef = '/impressum'
|
||
weight = 20
|
||
|