forked from chriskyfung/amp-affiliately-jekyll-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
123 lines (107 loc) · 3.5 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
# Site
name: "AMP Affiliately Jekyll Theme"
title: "AMP Affiliately Jekyll Theme"
description: "An AMP-ready Jekyll blog theme"
meta_description: "An AMP-ready Jekyll blog theme"
url: https://chriskyfung.github.io
logo: 'assets/images/logo-plainSVG.svg'
favicon: 'assets/images/favicon.png'
paginate: 6
paginate_path: "/blog/page:num/"
permalink: /blog/:year/:month/:day/:title
timezone: 'Asia/Hong_Kong'
baseurl: '/amp-affiliately-jekyll-theme'
email: ''
google_analytics: 'UA-72575541-9' # Google Analytics Tracking ID
gtm: 'GTM-WQMQK3X' # Google Tag Manager ID
cse_id: 011006674894885990812:tjln7k0nyjx # Google Custom Search Engine ID
adsense: 'ca-pub-4819282024314540' # Google Adsense ID
disqus: 'chriskyfung' # Disqus shortname
amp_disqus_url: 'https://chriskyfung.gitlab.io/disqus-amp/q.html' #baseurl of your AMP disqus iframe element
addthis: ra-5d01c83d522ad580
buyme: chriskyfung
sidebar:
featured: true
recent_posts: true
repository: chriskyfung/amp-affiliately-jekyll-theme #<USERNAME>/<PROJECT>
# Authors
authors:
John:
name: John Washer
display_name: John
gravatar:
email:
web:
facebook: https://www.facebook.com/
description:
Peter:
name: Peter Mu
display_name: Peter
gravatar:
email:
web:
facebook: https://www.facebook.com/
description:
Peter:
name: Sal
display_name: Sal
gravatar:
email:
web:
facebook: https://www.facebook.com/
description:
# Plugins
plugins:
- jekyll-paginate
- jekyll-sitemap
- jekyll-feed
- jekyll-seo-tag
- jekyll-archives
- jekyll-loading-lazy
- jekyll-webp
- jekyll-gzip
- jekyll-redirect-from
- jekyll-github-metadata
# Archives
jekyll-archives:
enabled:
- categories
- tags
layout: archive
permalinks:
category: '/category/:name/'
tag: '/tag/:name/'
# Other
markdown: kramdown
highlighter: rouge
environment: production
jekyll-minifier:
exclude: 'feed.xml' # Exclude files from processing - file name, glob pattern or array of file names and glob patterns
############################################################
# Site configuration for the WebP Generator Plugin
# The values here represent the defaults if nothing is set
webp:
enabled: true
# The quality of the webp conversion 0 to 100 (where 100 is least lossy)
quality: 75
# List of directories containing images to optimize, nested directories will only be checked if `nested` is true
# By default the generator will search for a folder called `/img` under the site root and process all jpg, png and tiff image files found there.
img_dir: ["/images/", "/assets/images"]
# Whether to search in nested directories or not
nested: true
# add ".gif" to the format list to generate webp for animated gifs as well
formats: [".jpeg", ".jpg", ".png", ".tiff"]
# File extensions for animated gif files
gifs: [".gif"]
# Set to true to always regenerate existing webp files
regenerate: false
# Local path to the WebP utilities to use (relative or absolute)
# Omit or leave as nil to use the utilities shipped with the gem, override only to use your local install
webp_path: nil
# List of files or directories to excludes
# e.g. custom or hand generated webp conversion files
exclude: []
# append '.webp' to filename after original extension rather than replacing it.
# Default transforms `image.png` to `image.webp`, while changing to true transforms `image.png` to `image.png.webp`
append_ext: false
############################################################