about summary refs log tree commit diff stats
path: root/exampleSite/config.toml
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/config.toml')
-rw-r--r--exampleSite/config.toml36
1 files changed, 36 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..7147426 --- /dev/null +++ b/exampleSite/config.toml
@@ -0,0 +1,36 @@
1baseurl = "/"
2languageCode = "en-us"
3title = "A minimal Hugo website"
4theme = "hugo-xmin"
5googleAnalytics = ""
6disqusShortname = ""
7ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
8footnotereturnlinkcontents = "↩"
9
10[permalinks]
11 post = "/post/:year/:month/:day/:slug/"
12 note = "/note/:year/:month/:day/:slug/"
13
14[[menu.main]]
15 name = "Home"
16 url = "/"
17 weight = 1
18[[menu.main]]
19 name = "About"
20 url = "/about/"
21 weight = 2
22[[menu.main]]
23 name = "Categories"
24 url = "/categories/"
25 weight = 3
26[[menu.main]]
27 name = "Tags"
28 url = "/tags/"
29 weight = 4
30[[menu.main]]
31 name = "Subscribe"
32 url = "/index.xml"
33
34[params]
35 description = "A website built through Hugo and blogdown."
36 footer = "© [Yihui Xie](https://yihui.name) 2017 -- 2019 | [Github](https://github.com/yihui) | [Twitter](https://twitter.com/xieyihui)"