40 lines
954 B
TOML
40 lines
954 B
TOML
|
######################## default configuration ####################
|
||
|
baseURL = "https://demo.gethugothemes.com/reporter/"
|
||
|
title = "BSD Talk"
|
||
|
theme = "reporter"
|
||
|
# post pagination
|
||
|
paginate = "7"
|
||
|
# post excerpt
|
||
|
summaryLength = "20"
|
||
|
# google analytics
|
||
|
googleAnalytics = "" # example : UA-123-45
|
||
|
# disqus short name
|
||
|
disqusShortname = "bsd-talk" # get your shortname form here : https://disqus.com
|
||
|
# disable language
|
||
|
disableLanguages = ["fr"] # example: ["fr"] for disable french language
|
||
|
|
||
|
# webp image quality
|
||
|
[imaging]
|
||
|
quality = 100
|
||
|
|
||
|
|
||
|
############################# Outputs ##############################
|
||
|
[outputs]
|
||
|
home = ["HTML", "RSS", "JSON", "WebAppManifest"]
|
||
|
|
||
|
[markup]
|
||
|
[markup.goldmark.renderer]
|
||
|
unsafe= true
|
||
|
|
||
|
[mediaTypes]
|
||
|
[mediaTypes."application/manifest+json"]
|
||
|
suffixes = ["webmanifest"]
|
||
|
|
||
|
[mediaTypes."text/netlify"]
|
||
|
delimiter = ""
|
||
|
suffixes = [""]
|
||
|
|
||
|
[outputFormats]
|
||
|
[outputFormats.WebAppManifest]
|
||
|
mediaType = "application/manifest+json"
|
||
|
rel = "manifest"
|