1
1
baseURL = ' https://toniebox-reverse-engineering.github.io'
2
2
languageCode = ' en-gb'
3
3
title = ' Toniebox Reverse Engineering'
4
- theme = ' ananke '
4
+ theme = ' hugo-book '
5
5
DefaultContentLanguage = ' en'
6
6
7
- SectionPagesMenu = ' main'
8
- Paginate = 3 # this is set low for demonstrating with dummy content. Set to a higher number
9
- googleAnalytics = ' '
10
- enableRobotsTXT = true
7
+
8
+ # (Optional) Set this to true to enable 'Last Modified by' date and git author
9
+ # information on 'doc' type pages.
10
+ enableGitInfo = true
11
+ # (Optional) Theme is intended for documentation use, therefore it doesn't render taxonomy.
12
+ # You can remove related files with config below
13
+ disableKinds = [' taxonomy' , ' taxonomyTerm' ] # (Optional, default light) Sets color theme: light, dark or auto.
11
14
12
15
[languages ]
13
16
[languages .en ]
@@ -20,28 +23,61 @@ enableRobotsTXT = true
20
23
filename = ' sitemap.xml'
21
24
22
25
[params ]
23
- text_color = ' '
24
- author = ' '
25
- favicon = ' '
26
- site_logo = ' '
27
- description = ' '
28
- # choose a background color from any on this page: http://tachyons.io/docs/themes/skins/ and preface it with 'bg-'
29
- background_color_class = ' bg-black'
30
- body_classes = ' avenir bg-white'
31
- featured_image = ' '
32
- recent_posts_number = 2
33
- custom_css = [' /css/style.css' ]
34
-
35
- [[params .ananke_socials ]]
36
- name = ' github'
37
- url = ' https://github.com/toniebox-reverse-engineering'
38
-
39
- [menu ]
40
- [[menu .main ]]
41
- name = ' Home'
42
- pageRef = ' /'
43
- weight = 10
44
- [[menu .main ]]
45
- name = ' How to start'
46
- pageRef = ' /howtoget'
47
- weight = 20
26
+ # Theme 'auto' switches between dark and light modes based on browser/os preferences
27
+ BookTheme = ' auto'
28
+
29
+ # (Optional, default true) Controls table of contents visibility on right side of pages.
30
+ # Start and end levels can be controlled with markup.tableOfContents setting.
31
+ # You can also specify this parameter per page in front matter.
32
+ BookToC = true
33
+
34
+ # (Optional, default none) Set the path to a logo for the book. If the logo is
35
+ # /static/logo.png then the path would be 'logo.png'
36
+ # BookLogo = 'logo.png'
37
+
38
+ # (Optional, default docs) Specify section of content to render as menu
39
+ # You can also set value to "*" to render all sections to menu
40
+ BookSection = ' docs'
41
+
42
+ # Set source repository location.
43
+ # Used for 'Last Modified' and 'Edit this page' links.
44
+ BookRepo = ' https://github.com/toniebox-reverse-engineering/toniebox-reverse-engineering.github.io'
45
+
46
+ # Specifies commit portion of the link to the page's last modified commit hash for 'doc' page
47
+ # type.
48
+ # Required if 'BookRepo' param is set.
49
+ # Value used to construct a URL consisting of BookRepo/BookCommitPath/<commit-hash>
50
+ # Github uses 'commit', Bitbucket uses 'commits'
51
+ BookCommitPath = ' commit'
52
+
53
+ # Enable 'Edit this page' links for 'doc' page type.
54
+ # Disabled by default. Uncomment to enable. Requires 'BookRepo' param.
55
+ # Path must point to the site directory.
56
+ # BookEditPath = 'edit/master'
57
+
58
+ # (Optional, default January 2, 2006) Configure the date format used on the pages
59
+ # - In git information
60
+ # - In blog posts
61
+ BookDateFormat = ' Jan 2, 2006'
62
+
63
+ # (Optional, default true) Enables search function with flexsearch,
64
+ # Index is built on fly, therefore it might slowdown your website.
65
+ # Configuration for indexing can be adjusted in i18n folder per language.
66
+ BookSearch = true
67
+
68
+ # (Optional, default true) Enables comments template on pages
69
+ # By default partials/docs/comments.html includes Disqus template
70
+ # See https://gohugo.io/content-management/comments/#configure-disqus
71
+ # Can be overwritten by same param in page frontmatter
72
+ BookComments = false
73
+
74
+ # /!\ This is an experimental feature, might be removed or changed at any time
75
+ # (Optional, experimental, default false) Enables portable links and link checks in markdown pages.
76
+ # Portable links meant to work with text editors and let you write markdown without {{< relref >}} shortcode
77
+ # Theme will print warning if page referenced in markdown does not exists.
78
+ # BookPortableLinks = true
79
+
80
+ # /!\ This is an experimental feature, might be removed or changed at any time
81
+ # (Optional, experimental, default false) Enables service worker that caches visited pages and resources for offline use.
82
+ # BookServiceWorker = true
83
+
0 commit comments