-
Notifications
You must be signed in to change notification settings - Fork 24
/
config.toml
117 lines (96 loc) · 3.48 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
baseURL = "https://mini-pw.github.io/2020L-WB-Blog/"
title = "Machine Learning Case Studies"
theme = "hugo-theme-fuji"
hasCJKLanguage = true
enableEmoji = true
enableRobotsTXT = true
disableKinds = ["taxonomyTerm"]
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
publishDir = "docs"
## Change this two to switch between different language
languageCode = "en" # For RSS, view https://www.rssboard.org/rss-language-codes
defaultContentLanguage = "en" # For HTML page, now support: en, zh-hans, zh-hant, ja, nl
summaryLength = 100 # Custom cummary length, add <!--more--> in post file to custom split point
paginate = 10
# googleAnalytics = "UA-000000000-0" # Set your Google Analytics UA here, or comment out to disable
[permalinks]
post = "/:filename/" # Custom post links, e.g. "/:year/:month/:title/"
[params]
# author = "Evidence Based Machine Learning Lab" # You can also set author in post front matter individually
subTitle = "by Evidence Based Machine Learning Lab"
# Word counter and read time indicator in post metadata
showWordCounter = true
# showReadTime = true
# Open Graph & Twitter Card variables
# You can also set description and images in post front matter individually
description = "A minimal hugo theme powered by Primer CSS."
images = ["img/og.png"] # This will use the image called og.png in static/img folder
# Posts shown in homepage
mainSections = ["post"]
# Bangumi image chart id
# bgmImageChart = "000000"
# Show scroll to top button
scrollTop = true
# License
license = "Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)"
licenseLink = "http://creativecommons.org/licenses/by-nc-sa/4.0/"
# Comments
# utterances, see: https://utteranc.es/
# utterancesRepo = "[ENTER REPO HERE]"
# utterancesIssueTerm = "pathname"
# utterancesTheme = "github-light"
# Disqus, see: https://disqus.com/admin/install/platforms/universalcode/
# disqusComment = false
# disqusShortname = "[ENTER YOUR DISQUS SHORTNAME HERE]"
# custom lazyload placeholder
# 16:9
lazyPlaceholder = "/lazyload/dsrca_loading_480x270.svg"
# 32:9
lazyPlaceholderRow = "/lazyload/dsrca_loading_960x270.svg"
# 8:9
lazyPlaceholderCol = "/lazyload/dsrca_loading_480x540.svg"
# enable this to fetch css & js from jsDelivr CDN
useCDN = true
# site global fixed mode aplayer
# playerName = "..." # Audio title or name
# playerArtist = "..." # Audio artist
# playerURL = "..." # Audio URL, support aac, mp3, wav and ogg
# playerCover = "..." # Audio cover
[markup]
[markup.highlight]
style = "monokailight"
[markup.tableOfContents]
startLevel = 2
endLevel = 3
[taxonomies]
tag = "tags"
author = "authors"
[menu]
[[menu.nav]]
name = "Home"
url = "/"
weight = 1
[[menu.nav]]
name = "Archives"
url = "/archives/"
weight = 2
[[menu.nav]]
name = "About"
url = "/about/"
weight = 3
[[menu.link]]
name = "ML Case Studies Book"
url = "https://mini-pw.github.io/2020L-WB-Book/"
weight = 1
[[menu.link]]
name = "Reproducibility repo (in Polish)"
url = "https://github.com/mini-pw/2020L-WarsztatyBadawcze-Reprodukowalnosc"
weight = 2
[[menu.link]]
name = "Imputation repo (in Polish)"
url = "https://github.com/mini-pw/2020L-WarsztatyBadawcze-Imputacja"
weight = 3
[[menu.link]]
name = "Interpretability repo (in Polish)"
url = "https://github.com/mini-pw/2020L-WarsztatyBadawcze-InzynieriaCech"
weight = 4