Skip to content

Commit 4f9bd22

Browse files
authored
feat(blog): new blog post from erics FF keynote (#531)
* feat(blog): new blog post from erics FF keynote * Fix: fixed the excerpt and removed the metadata at the bottom
1 parent 263f298 commit 4f9bd22

File tree

7 files changed

+605
-0
lines changed

7 files changed

+605
-0
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ source "https://rubygems.org"
33
gem "jekyll-include-cache"
44
gem "webrick"
55
gem "html-proofer"
6+
gem "jekyll-webp"
67
gem "ffi", "= 1.16.3"
78

89
gem "jekyll", "~>4.3.3"

_config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,3 +312,38 @@ defaults:
312312
comments: # true
313313
share: true
314314
related: true
315+
#### Support webp
316+
webp:
317+
enabled: true
318+
319+
# The quality of the webp conversion 0 to 100 (where 100 is least lossy)
320+
quality: 75
321+
322+
# List of directories containing images to optimize, nested directories will only be checked if `nested` is true
323+
# 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.
324+
img_dir: ["/images"]
325+
326+
# Whether to search in nested directories or not
327+
nested: false
328+
329+
# add ".gif" to the format list to generate webp for animated gifs as well
330+
formats: [".jpeg", ".jpg", ".png", ".tiff"]
331+
332+
# File extensions for animated gif files
333+
gifs: [".gif"]
334+
335+
# Set to true to always regenerate existing webp files
336+
regenerate: false
337+
338+
# Local path to the WebP utilities to use (relative or absolute)
339+
# Omit or leave as nil to use the utilities shipped with the gem, override only to use your local install
340+
# Eg : "/usr/local/bin/cwebp"
341+
webp_path: nil
342+
343+
# List of files or directories to exclude
344+
# e.g. custom or hand generated webp conversion files
345+
exclude: []
346+
347+
# append '.webp' to filename after original extension rather than replacing it.
348+
# Default transforms `image.png` to `image.webp`, while changing to true transforms `image.png` to `image.png.webp`
349+
append_ext: false

_data/authors.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,20 @@ Anita Graser:
4646
- label: "Twitter"
4747
icon: "fab fa-fw fa-twitter-square"
4848
url: "https://twitter.com/underdarkGIS"
49+
Eric J. Ma:
50+
name : "Eric J. Ma"
51+
bio : "Senior Principal Data Scientist, Moderna"
52+
avatar : "/images/people/eric-ma-headshot.jpeg"
53+
links:
54+
- label: "Website"
55+
icon: "fas fa-fw fa-link"
56+
url: "https://ericmjl.github.io/"
57+
- label: "GitHub"
58+
icon: "fab fa-fw fa-github"
59+
url: "https://github.com/ericmjl"
60+
- label: "LinkedIn"
61+
icon: "fab fa-fw fa-linkedin"
62+
url: "https://www.linkedin.com/in/ericmjl/"
4963
Jesse Mostipak:
5064
name : "Jesse Mostipak"
5165
bio : ""

0 commit comments

Comments
 (0)