-
Notifications
You must be signed in to change notification settings - Fork 208
/
hugo.toml
116 lines (95 loc) · 2.72 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
baseURL = 'https://minimumcd.org/'
featured_image = '/images/minimumCD-Tagline.png'
title = 'Minimum Viable Continuous Delivery'
enableGitInfo = false
enableRobotsTXT = true
disableKinds = [
"taxonomy",
"term"
]
# You can add your own taxonomies
[taxonomies]
category = "categories"
tag = "tags"
# Configure how URLs look like per section.
[permalinks]
blog = "/:section/:year/:month/:day/:slug/"
# Image processing configuration.
[imaging]
anchor = "Smart"
quality = 75
resampleFilter = "CatmullRom"
[markup]
[markup.goldmark]
[markup.goldmark.parser.attribute]
block = true
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "tango"
[outputs]
section = [
"HTML",
"RSS",
"print"
]
[params]
description = 'MinimumCD.org outlines key practices to help teams achieve continuous delivery benefits. By adopting these essentials, organizations can improve software quality, enhance team environments, and boost development outcomes.'
images = [
'/images/minimumCD-Tagline.png'
]
# gcs_engine_id = "c68e6136e96d14a0f"
github_branch = "master"
github_project_repo = "https://github.com/Minimum-CD/cd-manifesto"
github_repo = "https://github.com/Minimum-CD/cd-manifesto"
offlineSearch = true
prism_syntax_highlighting = true
pygmentsCodeFences = true
pygmentsStyle = "tango"
pygmentsUseClasses = false
pygmentsUseClassic = false
custom_js = [
"https://buttons.github.io/buttons.js"
]
[params.taxonomy]
taxonomyCloud = [
"categories",
"tags"
]
taxonomyCloudTitle = [
"Categories",
"Tag Cloud"
]
taxonomyPageHeader = [
"categories",
"tags"
]
[params.copyright]
authors = "MinimumCD Authors | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) | "
from_year = 2020
[params.ui]
breadcrumb_disable = false
navbar_logo = '/icons/logo.svg'
navbar_translucent_over_cover_disable = false
show_nav_title = true
sidebar_cache_limit = 10
sidebar_menu_compact = true
sidebar_menu_foldable = true
sidebar_search_disable = true
[params.links]
[[params.links.developer]]
desc = "Contribute!"
icon = "fab fa-github"
name = "GitHub"
url = "https://github.com/Minimum-CD/cd-manifesto"
[params.ui.feedback]
enable = false
[params.ui.readingtime]
enable = false
[services]
[services.googleAnalytics]
id = "G-KVLFMQXEF1"
[module]
proxy = "direct"
[[module.imports]]
path = "github.com/google/docsy"