-
Notifications
You must be signed in to change notification settings - Fork 15
/
_config.yml
105 lines (96 loc) · 1.96 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
# Jekyll config.
# NOTE: In dev env you have to restart the dev server for the changes to take place
# TODO: change default values to whatever you need below:
title: TourHunter Help Center
email: hello@tourhunter.com
description: 'TourHunter Help Center'
repository: tourhunter-com/help-tourhunter-com
timezone: UTC
encoding: "utf-8"
# URLs and links
baseurl: ''
url: 'https://help.tourhunter.com'
# Collections
collections:
en:
output: true
permalink: /en/:path/
ru:
output: true
permalink: /ru/:path/
articles-en:
output: true
permalink: "/"
articles-ru:
output: true
permalink: "/"
defaults:
#languages
-
scope:
path: ""
type: "en" # collection, @see https://jekyllrb.com/cs/configuration/front-matter-defaults/
values:
lang: "en"
-
scope:
path: ""
type: "ru"
values:
lang: "ru"
-
scope:
path: ""
type: "articles-en"
values:
layout: "article"
excerpt: ""
categories: [""]
tags: ""
lang: "en"
permalink: "/en/:name/"
-
scope:
path: ""
type: "articles-ru"
values:
layout: "article"
excerpt: ""
categories: [""]
tags: ""
lang: "ru"
permalink: "/ru/:name/"
# Build settings
#theme: jekyll-theme-cayman
markdown: kramdown
plugins:
- jekyll-feed
- jekyll-github-metadata
# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
# the internal "default list".
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
#
exclude:
- .sass-cache/
- .jekyll-cache/
- gemfiles/
- Gemfile
- Gemfile.lock
- node_modules/
- vendor/bundle/
- vendor/cache/
- vendor/gems/
- vendor/ruby/
- .idea/
- CNAME
- README.md
- PULL_REQUEST_TEMPLATE.md
- ISSUE_TEMPLATE.md
- LICENSE.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- INSTALL.md