95 lines
No EOL
2.5 KiB
TOML
95 lines
No EOL
2.5 KiB
TOML
baseURL = 'https://jouf.fr/accueil'
|
|
languageCode = 'fr-FR'
|
|
DefaultContentLanguage = "fr"
|
|
title = 'JOUF.FR'
|
|
theme = "hugo-theme-techdoc"
|
|
|
|
hasCJKLanguage = true
|
|
|
|
defaultContentLanguage = "fr"
|
|
defaultContentLanguageInSubdir= false
|
|
enableMissingTranslationPlaceholders = false
|
|
|
|
[params]
|
|
|
|
# Source Code repository section
|
|
description = "Bienvenue chez moi"
|
|
git_repository = "https://git.jouf.fr/stanislas/site-jouf"
|
|
version = "0.1.0"
|
|
|
|
# Documentation repository section
|
|
# documentation repository (set edit link to documentation repository)
|
|
git_doc_repository = "https://git.jouf.fr/stanislas/site-jouf"
|
|
git_doc_repository_branch = "main"
|
|
git_doc_repository_path = ""
|
|
|
|
# Open Graph and Twitter Cards settings section
|
|
# Open Graph settings for each page are set on the front matter.
|
|
# See https://gohugo.io/templates/internal/#open-graph
|
|
title = "Le site de stan"
|
|
|
|
# Theme settings section
|
|
# Theme color
|
|
# See color value reference https://developer.mozilla.org/en-US/docs/Web/CSS/color
|
|
custom_font_color = ""
|
|
custom_background_color = ""
|
|
|
|
# Documentation Menu section
|
|
# Menu style settings
|
|
# open menu has always its items expanded
|
|
# slide menu has a button to expand/collapse each menu item
|
|
menu_style = "slide-menu" # "open-menu" or "slide-menu" or "" blank is as no sidebar
|
|
|
|
# Date format
|
|
dateformat = "02/01/2006" # default "2 Jan 2006"
|
|
# See the format reference https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
|
|
|
|
# path name excluded from documentation menu
|
|
menu_exclusion = [
|
|
"archives",
|
|
"archive",
|
|
"blog",
|
|
"entry",
|
|
"post",
|
|
"posts",
|
|
]
|
|
|
|
# Global menu section
|
|
# See https://gohugo.io/content-management/menus/
|
|
[menu]
|
|
[[menu.main]]
|
|
name = "Accueil"
|
|
url = "/"
|
|
weight = 1
|
|
identifier = 'accueil'
|
|
[[menu.main]]
|
|
name = "A propos"
|
|
url = "/a-propos"
|
|
weight = 10
|
|
identifier = 'a-propos'
|
|
[[menu.main]]
|
|
name = "Etiquettes"
|
|
url = "/tags"
|
|
weight = 30
|
|
[[menu.main]]
|
|
name = "Catégories"
|
|
url = "/categories"
|
|
weight = 20
|
|
|
|
# Markup configure section
|
|
# See https://gohugo.io/getting-started/configuration-markup/
|
|
[markup]
|
|
defaultMarkdownHandler = "goldmark"
|
|
[markup.goldmark.renderer]
|
|
unsafe= true
|
|
[markup.tableOfContents]
|
|
startLevel = 2
|
|
endLevel = 6
|
|
ordered = false
|
|
|
|
[outputs]
|
|
home = ["HTML", "RSS"]
|
|
|
|
[taxonomies]
|
|
category = "categories"
|
|
tag = "tags" |