-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_config.example.yml
58 lines (46 loc) · 1.91 KB
/
_config.example.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
encoding: utf-8
# Site settings +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
## title & header
title: Yassss - Yet another simple static site starter
subtitle: A bold and beautiful start to a static website
## meta tag content (also affects facebook og: tags)
description: > # this means to ignore newlines
Yet another simple static site starter. This is a rad static website starting point.
## meta og tags
meta_site_name: Yassss
fb_app_id: XXXXXXXXXXXX
## google analytics id (leave blank if you do not want to use Google Analytics)
ga_id:
## DO NOT CHANGE THINGS BELOW THIS LINE ---------------------------------------------------------------------
# Build settings ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#### you can pretty much ignore everything in this section ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
## basic settings
# leave BASE_URL and configure in the CI config if you have different environments
url: "https://BASE_URL" # the base hostname & protocol for your site (include protocol ‘https://’)
# leave BLOCK_INDEXING and configure in the CI config if you have different environments
block_indexing: BLOCK_INDEXING # sets noindex site-wide if `true` (may be desirable for staging servers)
plugins:
- jekyll-assets
- jekyll-sitemap
- jekyll-feed
## feed setup
feed: # see https://github.com/jekyll/jekyll-feed for defaults/options
## assets setup
# remember to set `JEKYLL_ENV=production` for all of the asset goodies
assets: # see https://github.com/envygeeks/jekyll-assets for defaults/options
# compression: false # true on JEKYLL_ENV=production
## do not copy/move these files when running a build
exclude:
- node_modules
- README.md
- DETAILED_INSTALL.md
- Gemfile
- Rakefile
- vendor
- lib
- config
- redirects.txt
- package.json
- "*.lock"
- "*.log"
plugins_dir: _plugins