109 lines
2.6 KiB
TOML
109 lines
2.6 KiB
TOML
baseURL = 'https://rolandjesse.de/'
|
|
languageCode = 'de-DE'
|
|
title = 'Roland Jesse'
|
|
author = 'Roland Jesse'
|
|
keywords = 'personal homepage'
|
|
theme = 'toha'
|
|
|
|
DefaultContentLanguage = 'de'
|
|
|
|
# Enable global emoji support
|
|
enableEmoji = true
|
|
|
|
# Allow raw html in markdown file
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
|
|
[markup.tableOfContents]
|
|
startLevel = 2
|
|
endLevel = 6
|
|
ordered = false
|
|
|
|
# At least HTML and JSON are required for the main HTML content and
|
|
# client-side JavaScript search
|
|
[outputs]
|
|
home = [ "HTML", "RSS", "JSON" ]
|
|
|
|
# Site parameters
|
|
[params]
|
|
background = "/images/background.jpg"
|
|
|
|
# specify whether you want to show Table of Contents in reading page
|
|
enableTOC = false
|
|
|
|
# Show tags under the post title
|
|
enableTags = false
|
|
|
|
# Specify whether to show flag in the language selector. Default is true.
|
|
showFlags = false
|
|
|
|
# Provide logos for your site. The inverted logo will be used in the initial
|
|
# transparent navbar and the main logo will be used in the non-transparent navbar.
|
|
[params.logo]
|
|
main = "/images/main-logo.png"
|
|
inverted = "/images/inverted-logo.png"
|
|
favicon = "/images/favicon.png"
|
|
|
|
# Configure the number of section title visible in the top navbar
|
|
[params.topNavbar]
|
|
maxVisibleSections = 5
|
|
|
|
# Enable dark theme
|
|
[params.darkMode]
|
|
provider = "darkreader"
|
|
enable = true
|
|
default = "system"
|
|
|
|
# Configure various features of the toha theme
|
|
[params.features.portfolio]
|
|
enable = true
|
|
|
|
[params.features.blog]
|
|
enable = false
|
|
|
|
[params.features.blog.shareButtons]
|
|
facebook = false
|
|
twitter = false
|
|
linkedin = false
|
|
reddit = false
|
|
whatsapp = false
|
|
email = false
|
|
|
|
# Enable & configure "Notes" features
|
|
[params.features.notes]
|
|
enable = false
|
|
|
|
[params.features.comment]
|
|
enable = false
|
|
|
|
[params.features.analytics]
|
|
enabled = false
|
|
|
|
# Provide footer configuration.
|
|
[params.footer]
|
|
enable = false
|
|
# You can provide your custom footer template using this option.
|
|
# Put your template in "layouts/partials" folder of your repo.
|
|
template = "footer.html"
|
|
|
|
# Show/hide navigation in the footer. Default is "true".
|
|
[params.footer.navigation]
|
|
enable = true
|
|
customMenus = true
|
|
|
|
# Show/hide "Contact Me" section in the footer. Default is "true".
|
|
[params.footer.contactMe]
|
|
enable = true
|
|
|
|
# Show/hide credentials section in the footer. Default is "true".
|
|
[params.footer.credentials]
|
|
enable = false
|
|
|
|
# Show/hide newsletter section in the footer. Default is "true".
|
|
# Currently, it supports "mailchimp".
|
|
[params.footer.newsletter]
|
|
enable = false
|
|
|
|
# Show/hide disclaimer notice in the footer. Default is "false".
|
|
[params.footer.disclaimer]
|
|
enable = true
|