-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_config.yml
277 lines (264 loc) · 7.05 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# Title, decription, tagline and URL for your site
# Can be used in your theme by calling 'site.title' and so on
title: "Magazine du Webdesign – Design inspiration & ressources Web"
description:
url: http://www.magazineduwebdesign.com
twitter_username: MagDuWebdesign
# Used so Jekyll outputs the site correctly so Gulp can do what it wants
source: .tmp/src
destination: .tmp/dist
exclude: ['assets']
include: ['.nojekyll']
# Same as the title etc for your site but can instead be
# called by using 'site.author.name' and so on
# NOTE: Don't use @ in front of your Twitter username
author:
name: guillaumepalayer
email: [email protected]
avatar: avatar-88.jpg
twitter: guillaumpalayer
# _config.build.yml overwrites these options when you run `gulp build`
# Enables future posts (posts with dates in the future) and drafts
future: true
show_drafts: true
# Disables the more accurate related posts for faster generating of the site
lsi: false
# Only make the last 10 posts so generating isn't slow
limit_posts: 10
# Disable custom plugins, and ignore symbolic links.
safe: true
# Permalink structure and pagination options
permalink: /:title
paginate: 10
paginate_path: 'page:num'
excerpt_separator: ''
# Markdown library and options
markdown: redcarpet
redcarpet:
extensions: ['no_intra_emphasis', 'tables', 'fenced_code_blocks', 'autolink', 'smart',
'strikethrough', 'superscript', 'underline', 'highlight', 'footnotes']
highlighter: rouge
# Extending Jekyll
plugins:
- jekyll-feed
- jekyll-gist
- jekyll-paginate
- jekyll-sitemap
- jekyll-seo-tag
- jekyll-redirect-from
# Collections settings
collections:
note:
output: true
permalink: /:collection/:title/
collection:
output: true
permalink: /:collection/:title/
offre-emploi:
output: true
permalink: /:collection/:title/
conseil-candidater:
output: true
permalink: /:collection/:title/
conseil-recruter:
output: true
permalink: /:collection/:title/
# Defaults front matter variables for various types
# http://jekyllrb.com/docs/configuration/#front-matter-defaults
defaults:
-
scope:
path: ""
type: "posts"
values:
layout: "post"
auteur: "MagDuWebdesign" # overrides previous default layout
bgimgheader: "false"
permalink: "/:title/"
-
scope:
path: "note"
type: "note"
values:
layout: "note" # overrides previous default layout
-
scope:
path: "offre-emploi"
type: "offre-emploi"
values:
layout: "emploi" # overrides previous default layout
bgimgheader: "false"
-
scope:
path: "conseil-candidater"
type: "conseil-candidater"
values:
layout: "candidater" # overrides previous default layout
bgimgheader: "false"
-
scope:
path: "conseil-recruter"
type: "conseil-recruter"
values:
layout: "recruter" # overrides previous default layout
bgimgheader: "false"
# videos - overrides default permlink
-
scope:
path: "videos"
type: "posts"
values:
permalink: "/videos/:title/"
# ressources - overrides default permlink
-
scope:
path: "ressources/ressources-icones"
type: "posts"
values:
permalink: "/ressources/icones/:title/"
-
scope:
path: "ressources/ressources-kits-ui"
type: "posts"
values:
permalink: "/ressources/kits-ui/:title/"
-
scope:
path: "ressources/ressources-mockups"
type: "posts"
values:
permalink: "/ressources/mockups/:title/"
-
scope:
path: "ressources/ressources-outils-services"
type: "posts"
values:
permalink: "/ressources/outils-services/:title/"
-
scope:
path: "ressources/ressources-outils-services/ressources-outils-services-design"
type: "posts"
values:
permalink: "/ressources/outils-services/design/:title/"
-
scope:
path: "ressources/ressources-themes-jekyll"
type: "posts"
values:
permalink: "/ressources/themes-jekyll/:title/"
-
scope:
path: "ressources/ressources-themes-joomla"
type: "posts"
values:
permalink: "/ressources/themes-joomla/:title/"
-
scope:
path: "ressources/ressources-themes-wordpress"
type: "posts"
values:
permalink: "/ressources/themes-wordpress/:title/"
# inspirations - overrides default permlink
-
scope:
path: "inspirations/inspirations-code-art"
type: "posts"
values:
permalink: "/inspirations/code-art/:title/"
-
scope:
path: "inspirations/inspirations-parcours-apps-ios"
type: "posts"
values:
permalink: "/inspirations/parcours-apps-ios/:title/"
-
scope:
path: "inspirations/inspirations-ui-android-wear"
type: "posts"
values:
permalink: "/inspirations/ui-design/android-wear/:title/"
-
scope:
path: "inspirations/inspirations-ui-apple-watch"
type: "posts"
values:
permalink: "/inspirations/ui-design/apple-watch/:title/"
-
scope:
path: "inspirations/inspirations-ui-connected-car"
type: "posts"
values:
permalink: "/inspirations/ui-design/connected-car/:title/"
-
scope:
path: "inspirations/inspirations-ui-sites-web"
type: "posts"
values:
permalink: "/inspirations/ui-design/sites-web/:title/"
-
scope:
path: "inspirations/inspirations-ui-animations"
type: "posts"
values:
permalink: "/inspirations/ui-design/animations/:title/"
-
scope:
path: "inspirations/inspirations-ui-tv"
type: "posts"
values:
permalink: "/inspirations/ui-design/tv/:title/"
# evenements - overrides default permlink
-
scope:
path: "evenements/developpement-web"
type: "posts"
values:
permalink: "/evenements/developpement-web-devops/:title/"
-
scope:
path: "evenements/evenements-design"
type: "posts"
values:
permalink: "/evenements/web-design/:title/"
-
scope:
path: "evenements/evenements-ux-design"
type: "posts"
values:
permalink: "/evenements/ux-design/:title/"
# deals - overrides default permlink
-
scope:
path: "deals"
type: "posts"
values:
permalink: "/deals/:title/"
# conseils - overrides default permlink
-
scope:
path: "conseils/conseils-guide"
type: "posts"
values:
permalink: "/conseils/guides/:title/"
-
scope:
path: "conseils/conseils-livres"
type: "posts"
values:
permalink: "/conseils/livres/:title/"
-
scope:
path: "conseils/conseils-podcasts"
type: "posts"
values:
permalink: "/conseils/podcasts/:title/"
# Jekyll Data Pages Generator : this generator allows one to specify data files for which we want to generate one page per record.
page_gen:
- data: "inspirations-ui-sites-web"
template: "inspirations-sites-web-no-tags"
name: "title"
dir: "/inspirations/ui-design/sites-web/"
- data: "inspirations-ui-animations"
template: "inspirations-animations"
name: "title"
dir: "/inspirations/ui-design/animations/"