AstraOS commited on
Commit
66e8370
·
verified ·
1 Parent(s): 842b77e

Update config.toml

Browse files
Files changed (1) hide show
  1. config.toml +147 -1
config.toml CHANGED
@@ -1,4 +1,150 @@
1
  [module]
2
  [module.hugoVersion]
3
  extended = false
4
- min = "0.135.0"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  [module]
2
  [module.hugoVersion]
3
  extended = false
4
+ min = "0.135.0"
5
+
6
+ ## Base URL for the site
7
+ baseURL = 'https://foxihd.github.io/hugo-brewm/'
8
+ ## Site title
9
+ title = 'Example'
10
+ ## Use hugo-brewm theme
11
+ theme = 'hugo-brewm'
12
+ ## Enable Git information for pages, (e.g. lastMod date information)
13
+ enableGitInfo = true
14
+ ## Convert all URLs to absolute URLs
15
+ canonifyURLs = true
16
+ ## Default language for content
17
+ defaultContentLanguage = 'en'
18
+ ## Put default language in subdirectory
19
+ defaultContentLanguageInSubdir = true
20
+ ## Use sections for main menu
21
+ # sectionPagesMenu = 'main'
22
+ ## Files to ignore when building site
23
+ ignoreFiles = [ '\.redacted', '\.old','\.bak', '\.tmp', '\.swp', '\.DS_Store']
24
+
25
+ ## Enable code fence highlighting
26
+ [markup]
27
+ [markup.highlight]
28
+ codeFences = true
29
+
30
+ ## Sitemap configuration
31
+ [sitemap]
32
+ ## Change frequency setting (will affect posts listings layout): 'always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never'
33
+ changeFreq = 'monthly'
34
+
35
+ ## Site parameters
36
+ [params]
37
+ ## Site title
38
+ title = "Example"
39
+ ## Site description
40
+ description = "An ExampleSite built with Hugo and Hugo-Brewm theme"
41
+ ## Copyright notice
42
+ copyright = "Copyright 2025 (c) Foxxi"
43
+ ## Enable extended metadata (social cards)
44
+ extMeta = true
45
+ ## Enable coffee metric
46
+ coffeeStat = true
47
+
48
+ ## Author information
49
+ [params.author]
50
+ ## site author's name
51
+ name = 'Author Name'
52
+ ## Author's email (will be used for RSS feed)
53
+ email = 'email@example.com'
54
+ ## Other method to customize author and co-authors information
55
+ coauthor = [
56
+ {name = "A.N. Other", bio = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}
57
+ ]
58
+
59
+ ## Comments configuration
60
+ [params.comments]
61
+ ## Disable comments (disable fediverse comments)
62
+ disabled = false
63
+ ## Comment platform selection, currently only 'fediverse' is supported, further options to be determined
64
+ # platform = 'fediverse'
65
+
66
+ ## Fediverse integration settings
67
+ [params.fediverse]
68
+ ## Fediverse instance URL
69
+ instance = 'example.com'
70
+ ## Fediverse username
71
+ username = 'username'
72
+
73
+ ## Logo configuration
74
+ [params.logo]
75
+ ## Light mode logo mark
76
+ logoMark = 'https://example.com/logoMark.svg'
77
+ ## Dark mode logo mark
78
+ logoMarkDark = 'https://example.com/logoMarkDark.svg'
79
+ ## Enable logo type
80
+ logoType = true
81
+
82
+ ## Feed display settings
83
+ [params.feed]
84
+ ## Enable flowlines
85
+ flowlines = true
86
+ ## Limit number of flowlines
87
+ flowlinesLimit = 21
88
+
89
+ ## Home page display settings
90
+ [params.home]
91
+ ## Disable slide carousel
92
+ disableSlide = false
93
+ ## Disable taxonomy listing carousel
94
+ disableListing = false
95
+
96
+ ## Post display settings
97
+ [params.posts]
98
+ ## Enable text justification
99
+ justifying = false
100
+ ## Disable paragraph indentation
101
+ noIndent = false
102
+ ## Show colophon section (including QR code)
103
+ colophon = true
104
+ ## disable redaction history
105
+ disableHistory = false
106
+ ## SHow related content
107
+ related = true
108
+ ## Show share buttons
109
+ share = true
110
+
111
+ ## Search configuration
112
+ [params.search]
113
+ ## Enable search functionality, use duckduckgo (no javascript)
114
+ enable = true
115
+ ## Use pagefind search when javascript enabled, currently only 'pagefind' is supported, further options to be determined
116
+ pagefind = true
117
+
118
+ ## Typography settings
119
+ [params.typeface]
120
+ ## Use web safe fonts (will overide font selection below)
121
+ webSafe = false
122
+ ## Serif font selection
123
+ roman = 'crimson'
124
+ ## Sans-serif font selection
125
+ sans = 'inter'
126
+
127
+ ## Extended Metadata and Social card configuration
128
+ [params.socialCard]
129
+ ## Enable twitter and opengraph social cards (same as .params.extMeta)
130
+ enable = true
131
+ ## Default social card image, recommended resolution: 1200 x 630px
132
+ # image = "img/social-share.jpg"
133
+ ## Enable Twitter cards
134
+ # twitter = true
135
+ ## Twitter creator handle
136
+ # twitterCreator = "@username"
137
+ ## Twitter site handle
138
+ # twitterSite = "@username"
139
+
140
+ ## Enable OpenGraph
141
+ # opengraph = true
142
+ ## Facebook App ID
143
+ # facebookAppID = "123456789"
144
+ ## Facebook Admin ID
145
+ # facebookAdmin = "USER_ID"
146
+
147
+ ## Schema.org (EXPERIMENTAL, not fully supported body tags)
148
+ # schema = true
149
+ ## JsonLD (EXPERIMENTAL, cannot validate permalink)
150
+ # jsonLD = true