-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
97 lines (77 loc) · 4.82 KB
/
hugo.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
baseURL = 'https://go-hardware.com/'
languageCode = 'en-us'
title = 'Go Hardware'
[module]
[[module.imports]]
path = "github.com/colinwilson/lotusdocs"
disable = false
[[module.imports]]
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
disable = false
[params]
# Google Fonts
google_fonts = [
["Poppins", "400, 600, 800, 900"],
["Fira Code", "500, 700"]
]
sans_serif_font = "Poppins" # Default is System font
secondary_font = "Poppins" # Default is System font
mono_font = "Fira Code" # Default is System font
[params.footer]
copyright = "© :YEAR: Jay Pipes and the Go Hardware contributors. Built with [**Lotus Docs**](https://github.com/colinwilson/lotusdocs)"
version = true # include git commit info in footer
[params.social]
github = "go-hardware/ghw" # github.com/YOUR_GITHUB_ID
twitter = "jaypipes" # twitter.com/YOUR_TWITTER_ID
# instagram = "colinwilson" # instagram.com/YOUR_INSTAGRAM_ID
# rss = true # show rss icon with link
[params.docs] # Parameters for the /docs 'template'
title = "Go Hardware Docs" # default html title for documentation pages/sections
# pathName = "docs" # path for documentation site | default "docs"
# themeColor = "cyan" # (optional) - Set theme accent colour. Options include: blue (default), green, red, yellow, emerald, cardinal, magenta, cyan
darkMode = false # enable dark mode option? default false
prism = true # enable syntax highlighting via Prism
# prismTheme = "lotusdocs" # (optional) - Set theme for PrismJS. Options include: lotusdocs (default), solarized-light, twilight, lucario
# gitinfo
repoURL = "https://github.com/go-hardware/ghw" # Git repository URL for your site [support for GitHub, GitLab, and BitBucket]
repoBranch = "main" # Name of your Git repository branch
editPage = false # enable 'Edit this page' feature - default false
lastMod = false # enable 'Last modified' date on pages - default false
lastModRelative = false # format 'Last modified' time as relative - default true
# ToC
toc = true # enable table of contents? default is true
tocMobile = true # enable table of contents in mobile view? default is true
scrollSpy = true # enable scrollspy on ToC? default is true
# icons
sidebarIcons = true # enable sidebar icons? default false
titleIcon = true # enable front matter icon title prefix? default is false
# content navigation
breadcrumbs = true # default is true
navDesc = true # include front matter descriptions in Prev/Next navigation cards
navDescTrunc = 30 # Number of characters by which to truncate the Prev/Next descriptions
listDescTrunc = 100 # Number of characters by which to truncate the list card description
backToTop = true # enable back-to-top button? default true
# front matter
descriptions = true # enable front matter descriptions under content title?
# Link behaviour
intLinkTooltip = true # Enable a tooltip for internal links that displays info about the destination? default false
# extLinkNewTab = false # Open external links in a new Tab? default true
logoLinkURL = "https://go-hardware.com" # Set a custom URL destination for the top header logo link.
[params.flexsearch] # Parameters for FlexSearch
enabled = true
# tokenize = "full"
# optimize = true
# cache = 100
# minQueryChar = 3 # default is 0 (disabled)
# maxResult = 5 # default is 5
# searchSectionsIndex = []
[[menu.primary]]
name = "Docs"
url = "/docs/"
identifier = "docs"
weight = 10
[[menu.primary]]
name = "Issues"
url = "https://github.com/go-hardware/ghw/issues"
identifier = "issues"
weight = 30