Skip to content

Commit c48244a

Browse files
committed
load images based on srcset and display smallest images possible for each viewport size
1 parent 9f5c727 commit c48244a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+103
-74
lines changed

Gemfile

+5
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ group :jekyll_plugins do
2121
gem 'jekyll-seo-tag'
2222
gem 'jekyll-paginate'
2323
end
24+
25+
group :development do
26+
gem 'rake'
27+
gem 'image_processing'
28+
end

Gemfile.lock

+9
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ GEM
1414
http_parser.rb (0.6.0)
1515
i18n (0.9.5)
1616
concurrent-ruby (~> 1.0)
17+
image_processing (1.9.0)
18+
mini_magick (>= 4.9.3, < 5)
19+
ruby-vips (>= 2.0.13, < 3)
1720
jekyll (3.8.4)
1821
addressable (~> 2.4)
1922
colorator (~> 1.0)
@@ -43,13 +46,17 @@ GEM
4346
rb-inotify (~> 0.9, >= 0.9.7)
4447
ruby_dep (~> 1.2)
4548
mercenary (0.3.6)
49+
mini_magick (4.9.3)
4650
pathutil (0.16.1)
4751
forwardable-extended (~> 2.6)
4852
public_suffix (3.0.3)
53+
rake (12.3.2)
4954
rb-fsevent (0.10.3)
5055
rb-inotify (0.9.10)
5156
ffi (>= 0.5.0, < 2)
5257
rouge (3.3.0)
58+
ruby-vips (2.0.13)
59+
ffi (~> 1.9)
5360
ruby_dep (1.5.0)
5461
safe_yaml (1.0.4)
5562
sass (3.6.0)
@@ -62,10 +69,12 @@ PLATFORMS
6269
ruby
6370

6471
DEPENDENCIES
72+
image_processing
6573
jekyll (~> 3.8.4)
6674
jekyll-paginate
6775
jekyll-seo-tag
6876
jekyll-sitemap
77+
rake
6978

7079
BUNDLED WITH
7180
1.17.1

README.md

+3

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Dir.glob('lib/tasks/*.rake').each { |r| load r}
1+
Dir.glob('lib/tasks/*.rake').each { |r| load r }

_blinka/google_coral.md

+1-1

_blinka/orange_pi.md

+1-1

_blinka/raspberry_pi.md

+1-1

_board/arduino_mkr1300.md

+1-1

_board/arduino_mkrzero.md

+1-1

_board/arduino_zero.md

+1-1

_board/bast_pro_mini_m0.md

+1-1

_board/catwan_usbstick.md

+1-1

_board/circuitplayground_express.md

+1-1

_board/circuitplayground_express_4h.md

+1-1

_board/circuitplayground_express_crickit.md

+1-1

_board/circuitplayground_express_digikey_pycon2019.md

+1-1

_board/cp32-m4.md

+1-1

_board/datalore_ip_m4.md

+1-1

_board/electronut_labs_papyr.md

+1-1

_board/feather_huzzah.md

+1-1

_board/feather_m0_adalogger.md

+1-1

_board/feather_m0_basic.md

+1-1

_board/feather_m0_express.md

+1-1

_board/feather_m0_express_crickit.md

+1-1

_board/feather_m0_rfm69.md

+1-1

_board/feather_m0_rfm9x.md

+1-1

_board/feather_m0_supersized.md

+1-1

_board/feather_m4_express.md

+1-1

_board/feather_nrf52832.md

+1-1

_board/feather_nrf52840_express.md

+1-1

_board/feather_radiofruit_zigbee.md

+1-1

_board/gb_m4.md

+1-1

_board/gemma_m0.md

+1-1

_board/gemma_m0_pycon2018.md

+1-1

_board/grandcentral_m4_express.md

+1-1

_board/hallowing_m0_express.md

+1-1

_board/itsybitsy_m0_express.md

+1-1

_board/itsybitsy_m4_express.md

+1-1

_board/kicksat-sprite.md

+1-1

_board/makerdiary_nrf52840_mdk.md

+1-1

_board/makerdiary_nrf52840_mdk_usb_dongle.md

+1-1

0 commit comments

Comments
 (0)