Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ source "https://rubygems.org"
gem "jekyll-include-cache"
gem "webrick"
gem "html-proofer"
gem "jekyll-webp"
gem "ffi", "= 1.16.3"

gem "jekyll", "~>4.3.3"
Expand Down
35 changes: 35 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,3 +312,38 @@ defaults:
comments: # true
share: true
related: true
#### Support webp
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"]

# Whether to search in nested directories or not
nested: false

# 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
# Eg : "/usr/local/bin/cwebp"
webp_path: nil

# List of files or directories to exclude
# 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
14 changes: 14 additions & 0 deletions _data/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ Anita Graser:
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/underdarkGIS"
Eric J. Ma:
name : "Eric J. Ma"
bio : "Senior Principal Data Scientist, Moderna"
avatar : "/images/people/eric-ma-headshot.jpeg"
links:
- label: "Website"
icon: "fas fa-fw fa-link"
url: "https://ericmjl.github.io/"
- label: "GitHub"
icon: "fab fa-fw fa-github"
url: "https://github.com/ericmjl"
- label: "LinkedIn"
icon: "fab fa-fw fa-linkedin"
url: "https://www.linkedin.com/in/ericmjl/"
Jesse Mostipak:
name : "Jesse Mostipak"
bio : ""
Expand Down
Loading
Loading