-
Notifications
You must be signed in to change notification settings - Fork 1
/
_config.yml
108 lines (88 loc) · 2.89 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
# safe: true
title: Jekicker - Jekyll based advanced boilerplate # TODO
email: jekicker.contact@gmail.com # TODO
description: > # this means to ignore newlines
"Jekicker is a Jekyll based advanced boilerplace where you find best practices to build a production ready static website.
These best practicies include : use of sass, use of node modules instead of copying needed librairies' content manually, minification, uglification,
separating application's code from vendor's code, reduing the number of served files, use of gulp tasks,..." # TODO
image_to_share: TODO # put a link to your image: Not a project's local image link but one existing on the web.
permalink: pretty
name: Jekicker # TODO
author: Jekicker Team # TODO put the author
keywords: > # TODO
jekyll, static website, generator, sass, yarn, node modules, gulp tasks, production ready, github, open source, advanced boilerplate, jekicker, jekyll starter kit, blogs, posts, pages
assets:
compress:
css: true
js: true
features:
automatic_img_size: false
sources:
- _assets/fonts
- _assets/images
- _assets/javascripts
- _assets/stylesheets
- node_modules
- _assets/favicons
organization : Jekicker
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://jekicker.github.io" # todo the base hostname & protocol for your site, e.g. http://example.com
website: https://jekicker.github.io # TODO
# Jekicker on social medias
social_links: # TODO
facebook: https://www.facebook.com/todo-your-facebook-page/
twitter: https://twitter.com/todo-your-twitter-page
github: https://github.com/todo-your-github-page
googl_plus: https://plus.google.com/todo-your-app-google-plus-page
youtube: https://www.youtube.com/todo-your-youtube-channel
publisher_google_plus: https://plus.google.com/todo-the-publisher-google-plus-page # the link to the site's publisher google plus profile (different from the app's google plus account)
# facebook information
facebook_app_id: todo-your-facebook-app-id # 19xxxxxxxxxxxxxxxxxxx
# Build settings
google_analytics_id: todo-your-google-analytics-id # UA-XXXXXXXXX-1
google_site_verification: todo-your-google-site-verification-code # sIIIxxxxxxxxxxxxxxxxxxxxxxxxxxx
timezone: Europe/Paris # todo
markdown: kramdown
highlighter: rouge
plugins:
- jekyll-assets
- jekyll-feed
- jekyll-redirect-from
- jekyll-sitemap
whitelist:
- jekyll-redirect-from
exclude:
- Gemfile
- Gemfile.lock
- .gitignore
- README.md
- node_modules
- project-commands.md
- bin/*
- package.json
- gulp
- gulpfile.js
- yarn.lock
- yarn-error.log
- LICENSE.txt
defaults:
-
scope:
path: "" # for the file on the root
values:
layout: "default"
-
scope:
path: "_docs"
values:
layout: "default"
-
scope:
path: "pages"
values:
layout: "default"
-
scope:
path: "posts"
values:
layout: "posts"