-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.toml
80 lines (67 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
languageCode = "en-us"
title = "PCGen Documentation"
theme = "plain-docs"
# copyright is shown in footer
# It can include links - just remember to escape your backslashes.
# Example: "© 2017 <a href=\"//penwatch.net\">Li-aung Yip</a>"
copyright = ""
# If your base url is not the site root, you must set canonifyURLs = "true"
# Example 1:
# baseurl = "https://xyz.com/"
# canonifyURLs = "false"
# Example 2:
# baseurl = "https://xyz.com/spqr/"
# canonifyURLs = "true"
baseurl = "http://docs.pcgen.com/"
canonifyURLs = "false"
# To make website browseable offline, i.e. from local disk,
# set relativeURLs and uglyURLs to "true"
# see also params.ugly and params.uglyhome, below
relativeURLs = "true"
uglyURLs = "true"
[author]
name = "Li-aung Yip"
[params]
# set to "" if uglyURLs = "false"
# set to ".html" if uglyURLs = "true"
ugly = ".html"
# set to "/" if uglyURLs = "false"
# set to "/index.html" if uglyURLs = "true"
uglyhome = "/index.html"
[params.menu]
# Shown when a manu item has children.
# Some symbols you could use, depending on taste:
# + Plus symbol
# → Rightwards Arrow
# ➔ Wide-Headed Rightwards Arrow
# ➟ Dashed Rightwards Arrow
# ➤ Black Rightwards Arrowhead
# » Right Angle Quotation Mark
# ► Right Black Pointer
more_icon = "»"
[params.header]
# foreground colour for header
# example: "white", "#ff8800"
fg_color = "white"
# background colour for header
# example: "black", "#ff8800"
bg_color = "maroon"
# Shown in the header, under your site's title
tagline = ""
[params.footer]
# Show hugo version in footer
# i.e. "Generated with ♥ by Hugo 0.19-DEV"
show_hugo = true
# Show a link to edit this file on GitHub.
# Example: https://github.com/YOUR_USER_NAME/YOUR_REPOSITORY_NAME/edit/master/content/
edit_url_base = "https://github.com/LiaungYip/pcgen-docs/edit/master/content/"
# -----------------------------------------------------------------------------
[[menu.main]]
name = "PCGen Docs"
URL = "/index.html"
parent = ""
weight = 10
[[menu.main]]
name = "All Tags"
URL = "/categories/all-tag.html"
parent = "tag_indexes"