-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path_config.yml
107 lines (90 loc) · 2.36 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
# Site title and subtitle. This is used in _includes/header.html
title: 'Seravo.com Docs'
subtitle: 'Documentation for WordPress Developers'
# Titile to show in footer
name: Seravo.com
# Link to Github repo
# This is used in editing links
github:
repo: Seravo/docs
# Seravo.com/docs entity
google_analytics_id: 'UA-53086901-9'
# Site verification for webmasters
google_site_verification: "urAsJ1u3OTw8C7-KQnc2GxU7rJb7i4DAbbPxUv-eT9k"
# Enable/show navigation. There are there options:
# 0 - always hide
# 1 - always show
# 2 - show only if posts are present
navigation: 1
# URL to source code, used in _includes/footer.html
codeurl: 'https://seravo.com'
# Keep as an empty string if served up at the root. If served up at a specific
# path (e.g. on GitHub pages) leave off the trailing slash, e.g. /my-project
baseurl: '/docs'
# This is used in <meta> og fields
siteurl: https://seravo.com/docs
# Use sass from assets folder
sass:
sass_dir: /assets/_sass
style: :compressed
# Additional gems to use
plugins:
- jekyll-sitemap # Generates sitemaps for Google
# Syntax highlighting
highlighter: pygments
# Since these are pages, it doesn't really matter
future: true
# Exclude non-site files
exclude: ['bin','CNAME', 'README.md']
# Path to subpages, ordered by 'sequence' in navigation
collections_dir: pages
# Page categories
collections:
environment:
title: "Environment"
output: true
permalink: /:collection/:name/
sequence: 1
searchable: true
management:
title: "Management"
output: true
permalink: /:collection/:name/
sequence: 2
searchable: true
configuration:
title: "Configuration"
output: true
permalink: /:collection/:name/
sequence: 3
searchable: true
local-development:
title: "Local Development"
output: true
permalink: /:collection/:name/
sequence: 4
searchable: true
data-syncing:
title: "Data Syncing"
output: true
permalink: /:collection/:name/
sequence: 5
searchable: true
developer-tools:
title: "Development Tooling"
output: true
permalink: /:collection/:name/
sequence: 6
searchable: true
man:
title: "Man pages"
output: true
permalink: /:collection/:name/
searchable: true
highlighter: rouge
# Use the kramdown Markdown renderer
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
syntax_highlighter: rouge