forked from iGormilhit/hugo-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
99 lines (74 loc) · 2.19 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# The URL of your website.
# End your URL with a `/` trailing slash, e.g. `https://example.com/`.
baseurl = "https://our-hugo-test.netlify.com/"
languageCode = "fr"
defaultContentLanguage = "fr"
theme = "my-hugo-bootstrap"
enableGitInfo = true
# Title of your site
title = "Test du blog RERO21"
# Pagination
paginate = 4
paginatePath = "page"
[taxonomies]
tag = "tags"
category = "categories"
# Google analytics
# googleAnalytics = "UA-47268287-3"
[languages.fr]
languageName = "Français"
# Replace the default footer message with a localized message
copyright = "© copyright 2018 RERO"
[[languages.fr.menu.main]]
url = "/presentation/"
name = "Présentation"
weight = 1
[[languages.fr.menu.main]]
url = "/liens/"
name = "Liens et informations utiles"
weight = 2
[languages.en]
languageName = "English"
# Replace the default footer message with a localized message
copyright = "© copyright 2018 RERO"
[[languages.en.menu.main]]
url = "/presentation/"
name = "Presentation"
weight = 1
[[languages.en.menu.main]]
url = "/links/"
name = "Useful links and informations"
weight = 2
[languages.de]
languageName = "Deutsch"
# Replace the default footer message with a localized message
copyright = "© copyright 2018 RERO"
[[languages.de.menu.main]]
url = "/prasentation/"
name = "Präsentation"
weight = 1
[[languages.de.menu.main]]
url = "/links/"
name = "Nützliche Links und Informationen"
weight = 2
# Links format
[permalinks]
post = "/:filename/"
[params]
# Main sections (currently used for the recent posts in the sidebar)
mainSections = ["post"]
# Default author
# author = "RERO"
# Date format (default: Jan 2, 2006)
date_format = "2006-01-02"
# Display post summaries instead of content in list templates (default: true)
# truncate = false
# Display social sharing buttons (default: true)
# share = true
[params.sidebar]
# Whether to show the recent posts or not (default: true)
# showRecent = false
# Whether to show the taxonomies or not (default: true)
# showTaxonomy = false
# How many posts to show on the sidebar (Default: 5)
# num_recent_posts = 5