122 lines
2.8 KiB
TOML
122 lines
2.8 KiB
TOML
baseurl = "/"
|
|
metaDataFormat = "yaml"
|
|
title = "Association Chahut"
|
|
theme = "blist"
|
|
staticDir = ['static', 'content/static']
|
|
|
|
DefaultContentLanguage = "fr"
|
|
DefaultContentLanguageInSubdir = true
|
|
[languages]
|
|
[languages.fr]
|
|
contentDir = "content"
|
|
weight = 1
|
|
languageName = "Français"
|
|
[[languages.fr.menu.main]]
|
|
name = "Articles"
|
|
url = "blog"
|
|
weight = 1
|
|
|
|
[[languages.fr.menu.main]]
|
|
name = "À propos"
|
|
url = "page/about/"
|
|
weight = 2
|
|
|
|
# [[languages.fr.menu.main]]
|
|
# name = "Tags"
|
|
# url = "tags"
|
|
# weight = 3
|
|
|
|
|
|
[params]
|
|
# Enable the darkmode toggle in header
|
|
darkModeToggle = true
|
|
|
|
# Enable search in header
|
|
enableSearch = false
|
|
|
|
# Option to customize the search parameters of a page
|
|
# Below are the supported options; Note that including entire content
|
|
# may slowdown the loading of search results
|
|
# Title of page is included by default
|
|
searchKeys = [
|
|
"tags",
|
|
"date",
|
|
"categories",
|
|
"summary",
|
|
"content",
|
|
"link",
|
|
"author"
|
|
]
|
|
|
|
# Custom copyright - optional
|
|
copyright = "Copyright © 2021 - Katheryn Fox · All rights reserved"
|
|
favicon = "/favicon.svg"
|
|
|
|
# Color for the intro details and social links block, not applicable for dark mode
|
|
# Supported values: Any color from TailwindCSS default colors
|
|
# Reference: https://tailwindcss.com/docs/customizing-colors
|
|
ascentColor = "bg-blue-100"
|
|
|
|
# The page bundle that is shown on the front page
|
|
frontBundle = "blog"
|
|
|
|
# Used to hide the post metadata such as posted date, reading time and word count
|
|
# Can be used at site level or page level
|
|
hideMeta = false
|
|
|
|
# To hide "Other languages" option if the post is available in multiple languages
|
|
# Can be used at site level or page level
|
|
hideOtherLanguages = true
|
|
|
|
# Add support for Table of contents
|
|
# Can be added to a page level also in markdown frontmatter
|
|
toc = true
|
|
|
|
# Hides the thumbnail in post view
|
|
# Thumbnails in home and blog pages will still be shown
|
|
# This setting can also be in page's markdown file
|
|
hidePageThumbnail = false
|
|
|
|
# Comments system
|
|
[params.comments]
|
|
# Supports disqus, giscus and utterances
|
|
# Check hugo docs for setting up disqus
|
|
#system = "giscus"
|
|
|
|
# Options for giscus, exclude hyphens
|
|
repo = ""
|
|
repoid = ""
|
|
category = ""
|
|
categoryid = ""
|
|
mapping = ""
|
|
strict = ""
|
|
reactionsenabled = ""
|
|
emitmetadata = ""
|
|
inputposition = ""
|
|
theme = ""
|
|
|
|
# Options for utterances, exclude hyphens
|
|
# repo = ""
|
|
# issueterm = ""
|
|
# theme = ""
|
|
|
|
[[menu.main]]
|
|
name = "À propos"
|
|
url = "/about"
|
|
|
|
[build]
|
|
writeStats = false
|
|
|
|
[outputs]
|
|
home = ["HTML", "RSS", "JSON"]
|
|
|
|
# syntax highlight settings
|
|
[markup]
|
|
[markup.highlight]
|
|
style = "dracula"
|
|
[markup.goldmark.renderer]
|
|
# Enable to include inline HTML
|
|
unsafe = false
|
|
|
|
|