-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.toml
69 lines (55 loc) · 1.22 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
baseURL = "https://practicalgobook.net"
languageCode = "en-us"
title = "Practical Go - Book Website"
theme = "etch"
googleAnalytics = ""
enableGitInfo = true
lastmod = ["lastmod", ":fileModTime", ":default"]
[markup.goldmark.renderer]
unsafe= true
[params]
description = "Book website for Practical Go, a book by Amit Saha"
mainSection = "about"
showAllPostsOnHomePage = true
postsOnHomePage = 20
tagsOverview = true
showProjectsList = false
show_updated = true
rss = true
dark = "auto"
[[params.social]]
name = "github"
link = "https://github.com/practicalgo"
[[params.social]]
name = "email"
link = "[email protected]" # no need for "mailto:" at the start
[taxonomies]
category = "categories"
tag = "tags"
[[menu.main]]
name = "Table of Contents"
url = "/toc"
weight = 1
[[menu.main]]
name = "Blog"
url = "/posts"
weight = 1
[[menu.main]]
name = "Buy the book!"
url = "/buy"
weight = 1
[[menu.main]]
name = "Code"
url = "/code"
weight = 1
[[menu.main]]
name = "Support"
url = "/support"
weight = 1
[[menu.main]]
name = "Errata"
url = "/errata"
weight = 1
[[menu.main]]
name = "Subscribe (RSS)"
url = "/index.xml"