You've already forked dasharo-website
mirror of
https://github.com/Dasharo/dasharo-website.git
synced 2026-03-06 14:53:28 -08:00
04ca0dd2d8
Signed-off-by: Piotr Król <piotr.krol@3mdeb.com>
71 lines
1.9 KiB
TOML
Executable File
71 lines
1.9 KiB
TOML
Executable File
######################## default configuration ####################
|
|
baseURL = "/"
|
|
title = "Dasharo"
|
|
theme = ["dasharo"]
|
|
# Default time zone for time stamps; use any valid tz database name: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
|
timeZone = "UTC"
|
|
# post pagination
|
|
paginate = "6" # see https://gohugo.io/extras/pagination/
|
|
# post excerpt
|
|
summaryLength = "10" # see https://gohugo.io/content-management/excerpts/
|
|
[params]
|
|
# google analytics
|
|
googleAnalytics = "G-CK3BQWWCHQ" # example: UA-123-45, for more info, read the article https://support.google.com/analytics/answer/1008080?hl=en
|
|
|
|
############################# Build ##############################
|
|
[build]
|
|
writeStats = false
|
|
|
|
############################# Outputs ##############################
|
|
[outputs]
|
|
home = ["HTML", "RSS", "JSON", "WebAppManifest"]
|
|
|
|
############################# Imaging ##############################
|
|
[imaging]
|
|
# See https://github.com/disintegration/imaging
|
|
# Default JPEG or WebP quality setting. Default is 75.
|
|
quality = 90
|
|
|
|
############################# Caches ###############################
|
|
[caches]
|
|
[caches.images]
|
|
dir = ":resourceDir/_gen"
|
|
maxAge = "720h"
|
|
|
|
[caches.assets]
|
|
dir = ":resourceDir/_gen"
|
|
maxAge = "720h"
|
|
|
|
|
|
############################# Markup ###############################
|
|
[markup]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
[markup.goldmark.parser.attribute]
|
|
block = true
|
|
|
|
[markup.highlight]
|
|
style = 'monokai' # see https://xyproto.github.io/splash/docs/all.html
|
|
|
|
[markup.tableOfContents]
|
|
startLevel = 2
|
|
endLevel = 5
|
|
ordered = true
|
|
|
|
|
|
############################ Media types ############################
|
|
[mediaTypes]
|
|
[mediaTypes."application/manifest+json"]
|
|
suffixes = ["webmanifest"]
|
|
|
|
[mediaTypes."text/netlify"]
|
|
delimiter = ""
|
|
suffixes = [""]
|
|
|
|
|
|
############################ Output Format ###########################
|
|
[outputFormats]
|
|
[outputFormats.WebAppManifest]
|
|
mediaType = "application/manifest+json"
|
|
rel = "manifest"
|