1st draft finished

This commit is contained in:
Spencer Flagg 2023-10-06 13:16:52 +02:00
parent 71ba2c4bdc
commit c1248dea4c
29 changed files with 856 additions and 11 deletions

View file

@ -3,6 +3,9 @@ const pluginRss = require("@11ty/eleventy-plugin-rss");
const svgSprite = require("eleventy-plugin-svg-sprite"); const svgSprite = require("eleventy-plugin-svg-sprite");
const dateFilter = require("./src/filters/dateFilter.js"); const dateFilter = require("./src/filters/dateFilter.js");
const cleanCSS = require("clean-css"); const cleanCSS = require("clean-css");
//const eleventyWebcPlugin = require("@11ty/eleventy-plugin-webc");
//const { eleventyImagePlugin } = require("@11ty/eleventy-img");
const Image = require('@11ty/eleventy-img');
module.exports = function (config) { module.exports = function (config) {
config.setServerOptions({ config.setServerOptions({
@ -13,7 +16,7 @@ module.exports = function (config) {
showAllHosts: true, showAllHosts: true,
}); });
// PASSTHROUGHS // PASSTHROUGHS
config.addPassthroughCopy("src/assets/images/"); //config.addPassthroughCopy("src/assets/images/");
// LAYOUTS // // LAYOUTS //
config.addLayoutAlias("base", "layouts/base.njk"); config.addLayoutAlias("base", "layouts/base.njk");
@ -43,6 +46,50 @@ module.exports = function (config) {
svgShortcode: "icon", svgShortcode: "icon",
globalClasses: "icon", globalClasses: "icon",
}); });
// WebC
// config.addPlugin(eleventyWebcPlugin, {
// components: [
// // …
// // Add as a global WebC component
// "npm:@11ty/eleventy-img/*.webc",
// ]
// });
// Image plugin
// config.addPlugin(eleventyImagePlugin, {
// // Set global default options
// formats: ["webp", "jpeg"],
// urlPath: "/assets/images/",
// outputDir: "./dist/assets/images/",
// // Notably `outputDir` is resolved automatically
// // to the project output directory
// defaultAttributes: {
// loading: "lazy",
// decoding: "async"
// }
// });
// SHORTCODES
config.addShortcode("image", async function(src, cls, alt, sizes) {
let metadata = await Image(src, {
widths: [300, 600],
formats: ["webp", "jpeg"],
urlPath: "/assets/images/",
outputDir: "dist/assets/images/",
});
let imageAttributes = {
class: cls,
alt,
sizes,
loading: "lazy",
decoding: "async",
};
// You bet we throw an error on a missing alt (alt="" works okay)
return Image.generateHTML(metadata, imageAttributes);
});
// EXTRAS // // EXTRAS //
// Post List Excerpts // Post List Excerpts

Binary file not shown.

After

Width:  |  Height:  |  Size: 695 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 279 KiB

BIN
img/4gmIiS2owg-300.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
img/4gmIiS2owg-300.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
img/4gmIiS2owg-600.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

BIN
img/4gmIiS2owg-600.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

BIN
img/f3pSpnkd64-300.avif Normal file

Binary file not shown.

BIN
img/f3pSpnkd64-300.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
img/f3pSpnkd64-300.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
img/f3pSpnkd64-600.avif Normal file

Binary file not shown.

BIN
img/f3pSpnkd64-600.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

BIN
img/f3pSpnkd64-600.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

764
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
{ {
"name": "lucht", "name": "lucht",
"version": "1.0.0", "version": "1.0.0",
"description": "A mildly opinionated Eleventy starter kit", "description": "A homepage",
"scripts": { "scripts": {
"eleventy:serve": "cross-env ELEVENTY_ENV=development eleventy --serve --quiet", "eleventy:serve": "cross-env ELEVENTY_ENV=development eleventy --serve --quiet",
"eleventy:build": "cross-env ELEVENTY_ENV=production eleventy", "eleventy:build": "cross-env ELEVENTY_ENV=production eleventy",
@ -12,14 +12,16 @@
"build": "run-s -l eleventy:build sass:build" "build": "run-s -l eleventy:build sass:build"
}, },
"author": { "author": {
"name": "Matt DeCamp", "name": "Spencer Flagg",
"email": "matt@mattdecamp.com", "email": "work@spencerflagg.com",
"url": "https://mattdecamp.com" "url": "https://spencerflagg.com"
}, },
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@11ty/eleventy": "^2.0.0", "@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-img": "^3.1.1",
"@11ty/eleventy-plugin-rss": "^1.1.1", "@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-webc": "^0.11.1",
"clean-css": "^5.1.5", "clean-css": "^5.1.5",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eleventy-plugin-svg-sprite": "^2.4.0", "eleventy-plugin-svg-sprite": "^2.4.0",

File diff suppressed because one or more lines are too long

View file

@ -77,6 +77,7 @@
img { img {
object-fit: cover; object-fit: cover;
min-height: 100vh; min-height: 100vh;
width: 100%;
&.bkg--winter { &.bkg--winter {
border-right: 1px solid black; border-right: 1px solid black;
}&.bkg--summer { }&.bkg--summer {
@ -85,4 +86,22 @@
} }
} }
}
@media screen and (max-width: 600px) {
.bkg {
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr;
img {
min-height: auto;
height: 50vh;
&.bkg--winter {
border-right: none;
border-bottom: 1px solid black;
}&.bkg--summer {
border-left: none;
border-top: 1px solid black;
}
}
}
} }

View file

@ -581,6 +581,7 @@ header {
.bkg img { .bkg img {
object-fit: cover; object-fit: cover;
min-height: 100vh; min-height: 100vh;
width: 100%;
} }
.bkg img.bkg--winter { .bkg img.bkg--winter {
border-right: 1px solid black; border-right: 1px solid black;
@ -590,6 +591,24 @@ header {
border-left: 1px solid black; border-left: 1px solid black;
} }
@media screen and (max-width: 600px) {
.bkg {
grid-template-columns: 1fr;
grid-template-rows: 1fr 1fr;
}
.bkg img {
min-height: auto;
height: 50vh;
}
.bkg img.bkg--winter {
border-right: none;
border-bottom: 1px solid black;
}
.bkg img.bkg--summer {
border-left: none;
border-top: 1px solid black;
}
}
footer { footer {
width: 100%; width: 100%;
max-width: 100vw; max-width: 100vw;

View file

@ -36,6 +36,6 @@ heading: Verwarming, Ventilatie, Airco
</div> </div>
</div> </div>
<div class="bkg"> <div class="bkg">
<img class="bkg--winter" src="/assets/images/winter.png" alt=""></img> {% image "src/assets/images/winter.png", "bkg--winter", "alt text here", "(min-width: 30em) 50vw, 100vw" %}
<img class="bkg--summer" src="/assets/images/summer.png" alt=""></img> {% image "src/assets/images/summer.png", "bkg--summer", "alt text here", "(min-width: 30em) 50vw, 100vw" %}
</div> </div>