try hugo-bearblog

This commit is contained in:
Christoph Cullmann 2025-07-19 16:16:40 +02:00
parent 93fea0ed81
commit 78492092ab
No known key found for this signature in database
470 changed files with 1346 additions and 29320 deletions

57
hugo.toml Normal file
View file

@ -0,0 +1,57 @@
# base URL used when generating links
baseURL = "https://cullmann.dev"
# the name of the theme to use
theme = 'hugo-bearblog'
# basic metadata
title = "Ignorance is bliss..."
author = "Christoph Cullmann"
copyright = "Copyright © Christoph Cullmann"
languageCode = "en-US"
# Generate a nice robots.txt for SEO
enableRobotsTXT = true
# Generate "Bearblog"-like URLs !only!, see https://bearblog.dev/.
disableKinds = ["taxonomy"]
ignoreErrors = ["error-disable-taxonomy"]
[params]
# The "description" of your website. This is used in the meta data of your generated html.
description = "Christoph Cullmann's web site"
# The path to your "favicon". This should be a square (at least 32px x 32px) png-file.
# Hint: It's good practise to also put a "favicon.ico"-file into your "static"-folder.
favicon = "images/favicon.png"
# These "images" are used for the structured data templates. This will show up, when
# services like Twitter or Slack want to generate a preview of a link to your site.
# See https://gohugo.io/templates/internal#twitter-cards and
# https://gohugo.io/templates/internal#open-graph.
images = ["images/share.png"]
# 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..."
# This theme will, by default, inject a made-with-line at the bottom of the page.
# You can turn it off, but we would really appreciate if you dont :-).
# hideMadeWithLine = true
# By default, this theme displays dates with a format like "02 Jan, 2006", but
# you can customize it by setting the `dateFormat` param in your site's config
# file. See [Hugo's Format function docs](https://gohugo.io/functions/format/)
# for details. An example TOML config that uses [ISO
# 8601](https://en.wikipedia.org/wiki/ISO_8601) format:
dateFormat = "2006-01-02"
# Configure markup highlighter to match "Bearblog" aesthetics, see
# https://gohugo.io/configuration/markup/#highlight
[markup]
[markup.highlight]
style = 'friendly'
lineNos = true
lineNumbersInTable = false
codeFences = true