forked from paketo-buildpacks/paketo-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
146 lines (115 loc) · 4.18 KB
/
config.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
baseURL = "https://paketo.io/"
title = "Paketo Buildpacks"
pygmentsUseClasses = true
pygmentsCodefences = true
enableRobotsTXT = true
# path name excluded from documentation menu
menu_exclusion = [
"contribute",
"docs"
]
[frontmatter]
lastmod = ["lastmod", ":fileModTime", ":default"]
[params.hero]
headline = "Paketo Buildpacks"
subheadline = "Your app, in your favorite language, ready to run in the cloud"
cta_text = "GET STARTED"
cta_link = "/docs/"
[[params.hero.logos]]
[[params.hero.logos.item]]
img = "logo-java.svg"
alt = "java logo"
docs= "java"
css_class = "languages__logo--java"
[[params.hero.logos.item]]
img = "logo-GraalVM.svg"
alt = "GraalVM logo"
docs= "java-native-image"
css_class = "languages__logo--graalvm"
[[params.hero.logos.item]]
img = "logo-go.svg"
alt = "go logo"
docs= "go"
css_class = "languages__logo--go"
[[params.hero.logos.item]]
img = "logo-dotnet-core.svg"
alt = ".net core logo"
docs= "dotnet-core"
css_class = "languages__logo--dotnet-core"
[[params.hero.logos.item]]
img = "logo-nginx.svg"
alt = "nginx logo"
docs= "nginx"
css_class = "languages__logo--nginx"
[[params.hero.logos.item]]
img = "logo-nodejs.svg"
alt = "nodejs logo"
docs= "nodejs"
css_class = "languages__logo--nodejs"
[[params.hero.logos.item]]
img = "logo-php.svg"
alt = "php logo"
docs= "php"
css_class = "languages__logo--php"
[[params.hero.logos.item]]
img = "logo-httpd.svg"
alt = "httpd logo"
docs= "httpd"
css_class = "languages__logo--httpd"
[[params.hero.logos.item]]
img = "logo-ruby.svg"
alt = "ruby logo"
docs= "ruby"
css_class = "languages__logo--ruby"
[params.what_are_buildpacks]
headline = "What are Buildpacks?"
description = "Buildpacks transform your application source code to images that can run on any cloud. Paketo Buildpacks provide language runtime support for applications. They leverage the Cloud Native Buildpacks framework to make image builds easy, performant, and secure."
cta_text = "More about the Cloud Native Buildpacks project"
cta_link = "https://buildpacks.io"
[params.why_paketo]
headline = "Why Paketo Buildpacks?"
copy = ""
[[params.why_paketo.item]]
title = "Secure"
description = "The Paketo project ensures that upstream languages, runtimes, and frameworks are continuously patched in response to vulnerabilities and updates."
image = "images/secure.svg"
[[params.why_paketo.item]]
title = "Standardized"
description = "Paketo Buildpacks implement the Cloud Native Buildpacks specification, an emerging standard for building app container images. You can use Paketo Buildpacks with tools such as the CNB pack CLI, kpack, Tekton, and Skaffold, in addition to a number of cloud platforms."
image = "images/standardized.svg"
reverse_class = "reverse"
[[params.why_paketo.item]]
title = "Community-Driven"
description = "The Paketo Buildpacks project lives within the Cloud Foundry Foundation and is dedicated to maintaining a vendor-neutral governance process."
image = "images/community.svg"
[params.get_started]
[[params.get_started.item]]
icon = "paketo-documentation.svg"
text = "Get Started"
link = "/docs/"
[params.docs_menu]
title = "PAKETO DOCS"
[menu]
[[ menu.main ]]
identifier = "reference"
name = "Reference"
weight = 500
[menu.main.params]
class = "docs-menu__section-header"
[[menu.main]]
identifier = "howto"
name = "How To"
weight = 200
[menu.main.params]
class = "docs-menu__section-header"
[[menu.main]]
identifier = "concepts"
name = "Concepts"
weight = 300
[menu.main.params]
class = "docs-menu__section-header"
[markup]
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 2