-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
71 lines (58 loc) · 1.2 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
baseurl = "/"
title = "simple demo"
languageCode = "en-us"
relativeurls = true
# Theme to use
theme = "simple-hugo-theme"
# Pagination
paginate = 3
paginatePath = "page"
# Google analytics
# googleAnalytics = ""
# Copyright
copyright = "© 2019 — Some Author — All rights reserved."
# Highlighting
pygmentsCodefences = true
pygmentsCodeFencesGuessSyntax = true
pygmentsoptions = "linenos=table"
pygmentsStyle = "vs"
#ignore files
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
# Taxonomies
[taxonomies]
tag = "tags"
category = "categories"
# Menu
[menu]
# Header
[[menu.main]]
url = "/post/"
name = "blog"
weight = 1
[[menu.main]]
url = "/about/"
name = "about"
weight = 2
[[menu.main]]
url = "/contact/"
name = "contact"
weight = 3
# Footer
[[menu.footer]]
url = "https://github.com/Xzya"
name = "GitHub"
weight = 1
[[menu.footer]]
url = "/posts/index.xml"
name = "RSS"
weight = 2
[[menu.footer]]
url = "mailto:foo@bar.com"
name = "Contact"
weight = 3
# Links format
[permalinks]
posts = "/posts/:year/:month/:title/"
[params]
# Date format (default: Jan 2, 2006)
# datefmt = "Jan 2, 2006"