78 lines
2.9 KiB
TOML
78 lines
2.9 KiB
TOML
# base URL used when generating links
|
|
baseURL = "https://cullmann.dev"
|
|
|
|
# the name of the theme to use
|
|
theme = 'hugo-bearcub'
|
|
|
|
# default content is English
|
|
defaultContentLanguage = "en"
|
|
languageCode = "en-US"
|
|
|
|
# basic metadata
|
|
title = "Ignorance is bliss..."
|
|
author = "Christoph Cullmann"
|
|
copyright = "Copyright © Christoph Cullmann"
|
|
|
|
# Generate a nice robots.txt for SEO
|
|
enableRobotsTXT = true
|
|
|
|
# Multilingual mode config. More for information about how to setup translation,
|
|
# see https://gohugo.io/content-management/multilingual/
|
|
[languages]
|
|
[languages.en]
|
|
title = "Ignorance is bliss..."
|
|
languageName = "en-US 🇺🇸"
|
|
LanguageCode = "en-US"
|
|
contentDir = "content"
|
|
|
|
[languages.en.params]
|
|
madeWith = "Made with [Hugo](https://gohugo.io) & [ᕦʕ •ᴥ•ʔᕤ Bear Cub](https://github.com/clente/hugo-bearcub)"
|
|
|
|
[params]
|
|
# dark theme only
|
|
mode = "dark"
|
|
|
|
# all stuff on my server
|
|
useCDN = false
|
|
|
|
# The "description" of your website. This is used in the meta data of your generated html.
|
|
description = "Christoph Cullmann's web site"
|
|
|
|
# Another "title" :-). This one is used as the site_name on the Hugo's internal
|
|
# opengraph structured data template.
|
|
# See https://ogp.me/ and https://gohugo.io/templates/internal#open-graph.
|
|
title = "Ignorance is bliss..."
|
|
|
|
# (EXPERIMENTAL) This theme has two options for its CSS styles: "original" and
|
|
# "herman". The former is what you see on Bear Cub's demo (an optimized
|
|
# version of Hugo Bear Blog), while the latter has a more modern look based on
|
|
# Herman Martinus's version of the Blogster Minimal theme for Astro.
|
|
themeStyle = "herman"
|
|
|
|
# The path to your favicon
|
|
favicon = "favicon.ico"
|
|
|
|
# (EXPERIMENTAL) This theme is capable of dynamically generating social cards
|
|
# for posts that don't have `images` defined in their front matter; By setting
|
|
# `generateSocialCard` to false, you can prevent this behavior. For more
|
|
# information see layouts/partials/social_card.html
|
|
generateSocialCard = true
|
|
|
|
# Author metadata. This is mostly used for the RSS feed of your site, but the
|
|
# email is also added to the footer of each post. You can hide the "reply to"
|
|
# link by using a `hideReply` param in front matter.
|
|
[params.author]
|
|
name = "Christoph Cullmann" # Your name as shown in the RSS feed metadata
|
|
email = "christoph@cullmann.dev" # Added to the footer so readers can reply to posts
|
|
|
|
# Setup syntax highlighting without inline styles. For more information about
|
|
# why you'd want to avoid inline styles, see
|
|
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src#unsafe_inline_styles
|
|
[markup]
|
|
[markup.highlight]
|
|
lineNos = true
|
|
lineNumbersInTable = false
|
|
# This allows Bear Cub to use a variation of Dracula that is more accessible
|
|
# to people with poor eyesight. For more information about color contrast
|
|
# and accessibility, see https://web.dev/color-and-contrast-accessibility/
|
|
noClasses = false
|