-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
58 lines (52 loc) · 1.7 KB
/
config.yaml
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
# Copyright (C) 2010-2020 Talend Inc. - www.talend.com
#
# This source code is available under agreement available at
# https://github.com/Talend/api-portal-template/blob/main/LICENSE.md
#
# You should have received a copy of the agreement
# along with this program; if not, write to Talend SA
# 9 rue Pages 92150 Suresnes, France
# Configure the whole Hugo site
# see https://gohugo.io/getting-started/configuration/
# Indicates the default language of the portal Web site.
# Labels are translated in the "i18n" directory
# see https://gohugo.io/content-management/multilingual/
DefaultContentLanguage: en
# Name of the theme used to generate the Web site
theme: "talend-1.0.0"
relativeURLs: true
# Title used in the header and footer of the Web site
languages:
en:
title: "API Portal"
weight: 1
# Tells Hugo that the "apis" directory is actually a content directory
# see https://gohugo.io/hugo-modules/configuration/#module-config-mounts
module:
mounts:
- source: apis
target: content/apis
- source: content
target: content
- source: static
target: static
- source: layouts
target: layouts
- source: data
target: data
- source: assets
target: assets
- source: i18n
target: i18n
- source: archetypes
target: archetypes
params:
# The "api-list" parameter configures the way APIs are displayed in the list of APIs page ("/apis/").
# By default APIs are sorted according to their names.
# But you can gather them by topic.
# Here is a sample configuration that creates a group entitled "Core APIs" which gathers the APIs
# "contacts" and "tasks". These names are the names of sub-directories of "/apis".
# api-list:
# - Core APIs:
# - contacts
# - tasks