Skip to content

Commit 1ef4bef

Browse files
authored
Merge pull request #7 from liamfiddler/example/localimages
Add local images to the base example.
2 parents 94c5874 + c977674 commit 1ef4bef

File tree

6 files changed

+13
-2
lines changed

6 files changed

+13
-2
lines changed

example/basic/.eleventy.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const lazyImagesPlugin = require('eleventy-plugin-lazyimages');
22

33
module.exports = function(eleventyConfig) {
4+
eleventyConfig.addPassthroughCopy('img');
45
eleventyConfig.addPlugin(lazyImagesPlugin);
56
};

example/basic/.lazyimages.json

+1-1
Large diffs are not rendered by default.

example/basic/img/test-01.png

9.7 KB
Loading

example/basic/img/test-02.jpg

6.02 KB
Loading

example/basic/img/test-03.jpg

4.95 KB
Loading

example/basic/index.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,19 @@ title: Basic demo - eleventy-plugin-lazyimages
44
---
55
# Basic demo
66

7-
This is a basic demo of
7+
This is a basic demo of
88
[eleventy-plugin-lazyimages](https://github.com/liamfiddler/eleventy-plugin-lazyimages)
99

10+
## These images are from the local filesystem:
11+
12+
![Local Test](/img/test-01.png "Local Test")
13+
14+
![Local Test](/img/test-02.jpg "Local Test")
15+
16+
![Local Test](/img/test-03.jpg "Local Test")
17+
18+
## These images are from a third-party website:
19+
1020
![Test](https://live.staticflickr.com/3915/14746807980_875aa68823_o.jpg "Test")
1121

1222
![Test](https://live.staticflickr.com/7807/47291519341_1ceba19252_o.jpg "Test")

0 commit comments

Comments
 (0)