This repository was archived by the owner on Feb 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathhugo.toml
102 lines (84 loc) · 3.08 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
98
99
100
101
102
baseURL = "https://example.com/"
enableGitInfo = true
enableRobotsTXT = true
# Set uglyURLs & relativeURLs for hugo to build local offline pages in public/
# When these are set `npm start` will no longer host functioning webpages. Instead
# use `npm run build` to construct the offline public/ directory
relativeURLs = false
uglyURLs = false
# Mount any external directories for use by hugo
#
# source:
# The source directory of the mount. For the main project, this can be either
# project-relative or absolute and even a symbolic link. For other modules it must be
# project-relative.
# target
# Where it should be mounted into Hugo's virtual filesystem. It must start with one of
# Hugo's component folders: static, content, layouts, data, assets, i18n, or archetypes.
# E.g. content/blog.
# [[module.mounts]]
# source = '../docs/*.md'
# target = 'content/en/docs'
[[module.mounts]]
source = "content/en"
target = "content"
[module]
proxy = "direct"
[[module.imports]]
path = "github.com/defenseunicorns/defense-unicorns-hugo-theme"
[[module.imports]]
path = "github.com/defenseunicorns/defense-unicorns-hugo-theme/dependencies"
[languages.en]
languageName = "English"
[languages.en.params]
description = "LeapfrogAI"
title = "LeapfrogAI"
[params]
# this merge bring is the theme defaults and allows overriding them if needed.
_merge = 'deep'
archived_version = false
copyright = "Defense Unicorns"
github_project_repo = "https://github.com/defenseunicorns/leapfrogai"
github_repo = "https://github.com/defenseunicorns/leapfrogai"
# x-release-please-start-version
version = "v0.14.0"
# x-release-please-end
# version_menu = "v1"
# url_latest_version = "https://latest-version"
# Add your release versions here that references the deployed release branch for that version.
# [[params.versions]]
# version = "v0.3 - Latest"
# url = "https://latest-version"
# [[params.versions]]
# version = "v0.2"
# url = "https://v02-version"
[params.ui]
navbar_logo = "img/leapfrogai.svg" # The product logo on the navbar
[[params.socialLinks]]
desc = ""
icon = "fa-brands fa-github"
name = "GitHub"
url = "https://github.com/defenseunicorns/leapfrogai"
### Other social links
# [[params.socialLinks]]
# name = "Community Slack"
# url = "https://communityinviter.com/apps/kubernetes/community"
# icon = "fa-brands fa-slack"
# desc = "Discussion and help from your fellow users"
# [[params.socialLinks]]
# name = "Twitter"
# url = "https://twitter.com/DefenseUnicorns"
# icon = "fa-brands fa-twitter"
# desc = "Defense Unicorns Twitter"
### Mermaid theme choices
#[params.mermaid]
# theme = "neutral" # You can override this default dark theme with other Mermaid themes
## The following merge in theme defaults from: https://github.com/defenseunicorns/defense-unicorns-hugo-theme/tree/main/config/_default
[markup]
_merge = 'shallow'
[outputs]
_merge = 'shallow'
[imaging]
_merge = 'shallow'
[taxonomies]
_merge = 'shallow'