-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_config.yml
124 lines (101 loc) · 2.63 KB
/
_config.yml
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
# Site settings
# You can create any custom variable you would like, and they will be
# in the templates via {{ site.myvariable }}.
title: kb
email: [email protected]
author: Dan Smith
description: > # this means to ignore newlines until "baseurl:"
Simple document management project to be used as static site reference
from monitoring tools (prometheus in this scenario) to dynamically
access site content based on deployed tags.
# DO NOT CHANGE THE LINE OF THIS FILE without editing .circleci/circle_urls.sh
baseurl: "/kb" # the subpath of your site
url: "https://101101.github.io" # the base hostname & protocol for the site
# Social (First three Required)
repo: "https://github.com/101101/kb"
github_user: "101101"
github_repo: "kb"
# Optional
twitter: dsmith73
linkedin: dsmith73
dockerhub: dsmith73
gitlab: dsmith73
slack: D012ESWSXHQ
discord: RmzVNzx
skype: dsmith73?chat
teams: https://teams.microsoft.com/l/chat/0/[email protected]
# Should there be feedback buttons at the bottom of pages?
feedback: true
# Link to a privacy policy in footer, uncomment and define if wanted
# privacy: https://domain.com/privacy
# google-analytics: UA-XXXXXXXXXX
logo_pixels: 34
color: "#0f3b61"
# color: "#30638e" # original color
# Build settings
markdown: kramdown
tag_color: secondary # danger, success, warning, primary, info, secondary
accentColor: red # purple, green, etc.
themeColor: red # purple, green, blue, orange, purple, grey
fixedNav: 'true' # true or false
# highlighter: rouge
permalink: /:year/:title/
markdown: kramdown
exclude: [_site, CHANGELOG.md, LICENSE, README.md, vendor]
# Collections
collections:
docs:
output: true
permalink: /:collection/:path
# Defaults
defaults:
- scope:
path: "_docs"
type: "docs"
values:
layout: page
- scope:
path: ""
type: "pages"
values:
layout: "page"
- scope:
path: "_docs/azure"
type: "azure"
values:
layout: "page"
category: "azure"
tags: "azure"
- scope:
path: "_docs/noc"
type: "noc"
values:
layout: "page"
category: "noc"
tags: "noc"
- scope:
path: "_docs/infra"
type: "infra"
values:
layout: "page"
category: "infra"
tags: "infra"
- scope:
path: "_docs/product-x"
type: "product-x"
values:
layout: "page"
category: "product-x"
tags: "product-x"
- scope:
path: "_docs/recipe"
type: "recipe"
values:
layout: "page"
category: "recipe"
tags: "recipe"
- scope:
path: "posts"
type: "posts"
values:
layout: "post"