-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
58 lines (49 loc) · 1.31 KB
/
hugo.toml
File metadata and controls
58 lines (49 loc) · 1.31 KB
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
baseURL = "https://devrail.dev"
title = "DevRail"
languageCode = "en-us"
# Hugo module configuration (Docsy theme via Go modules)
[module]
proxy = "direct"
[[module.imports]]
path = "github.com/google/docsy"
[[module.imports]]
path = "github.com/google/docsy/dependencies"
# Site parameters
[params]
description = "Opinionated development standards for teams that ship with AI agents"
github_repo = "https://github.com/devrail-dev/devrail.dev"
github_project_repo = "https://github.com/devrail-dev"
offlineSearch = false
images = ["images/devrail-icon.png"]
[params.copyright]
authors = "[Matthew Mellor](https://matthew.mellor.earth)"
[[params.links.developer]]
name = "GitHub"
url = "https://github.com/devrail-dev"
icon = "fab fa-github"
[params.ui]
sidebar_menu_compact = true
breadcrumb_disable = false
navbar_logo = true
footer_about_disable = false
# Syntax highlighting
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "monokai"
guessSyntax = false
lineNumbersInTable = true
# Taxonomy configuration
[taxonomies]
tag = "tags"
category = "categories"
# Output formats
[outputs]
home = ["HTML"]
section = ["HTML"]
page = ["HTML"]
# Permalink structure
[permalinks]
blog = "/:section/:year/:month/:slug/"