43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
baseURL = "https://blog-koo48w00w0cw4sscokc0448k.reflectonai.com"
|
|
languageCode = "en-us"
|
|
title = "My New Hugo Site"
|
|
theme = "lightbi" # Using the LightBi theme
|
|
|
|
# Enable syntax highlighting
|
|
pygmentsCodeFences = true
|
|
pygmentsUseClasses = true
|
|
|
|
# Additional settings
|
|
paginate = 10
|
|
summaryLength = 30
|
|
enableEmoji = true
|
|
|
|
[params]
|
|
# Theme settings
|
|
description = "A cool new website built with Hugo and deployed on Coolify!"
|
|
favicon = "img/favicon.ico"
|
|
logo = "img/logo.png" # Place a logo file in static/img/ directory if you want one
|
|
comments = false # Set to true if you want to enable Disqus comments
|
|
readingTime = true # Show reading time for articles
|
|
hideAuthor = false
|
|
mainSections = ["post"]
|
|
|
|
# Social links (uncomment and fill the ones you want to show)
|
|
# github = "yourusername"
|
|
# twitter = "yourusername"
|
|
# linkedin = "yourusername"
|
|
# email = "your@email.com"
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
name = "Home"
|
|
url = "/"
|
|
weight = 1
|
|
[[menu.main]]
|
|
name = "Posts"
|
|
url = "/post/"
|
|
weight = 2
|
|
|
|
# Default publish directory is 'public', which is what Coolify expects for static sites.
|
|
# No need to explicitly set publishDir = "public" unless you change it.
|