Compress images
This commit is contained in:
@@ -2,16 +2,18 @@
|
||||
layout: ../../layouts/LayoutMdx.astro
|
||||
title: Weeks 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26 & 27
|
||||
date: 2021-09-18
|
||||
image: summer/kayak.jpg
|
||||
dir: summer
|
||||
image: kayak
|
||||
description: we take a break
|
||||
---
|
||||
|
||||
import Cards from "../../components/Cards.astro";
|
||||
import Solocard from "../../components/Solocard.astro";
|
||||
import NextPrev from "../../components/NextPrev.astro";
|
||||
import Progress from "../../components/Progress.astro";
|
||||
import YTVideo from "../../components/YTVideo.astro";
|
||||
export const s = (s) => `summer/${s}`;
|
||||
import { generateImageHyrdationFunction } from "../../utils";
|
||||
import Cards from "@components/Cards.astro";
|
||||
import Solocard from "@components/Solocard.astro";
|
||||
import NextPrev from "@components/NextPrev.astro";
|
||||
import Progress from "@components/Progress.astro";
|
||||
import YTVideo from "@components/YTVideo.astro";
|
||||
export const s = generateImageHyrdationFunction("summer");
|
||||
|
||||
Look at that! So many weeks! I didn't even know that summer was this long!
|
||||
|
||||
@@ -55,8 +57,8 @@ We really appreciated the flowers and gifts that people sent. Thank you very muc
|
||||
|
||||
<Cards
|
||||
images={[
|
||||
{ title: "Desperate to get outside", src: s("outside.jpg") },
|
||||
{ title: "With them in spirit 🔥", src: s("camping.jpg") },
|
||||
{ title: "Desperate to get outside", src: s("outside") },
|
||||
{ title: "With them in spirit 🔥", src: s("camping") },
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -68,18 +70,21 @@ This isn't really house news - it's more of an excuse as to why there isn't much
|
||||
|
||||
<Cards
|
||||
images={[
|
||||
{ title: "Going on a bike ride", src: s("bikeride.jpg") },
|
||||
{ title: "Rambling round the countryside", src: s("signpost.jpg") },
|
||||
{ title: "Enjoying our new kayak", src: s("kayak.jpg") },
|
||||
{ title: "Visiting Dyrham Park", src: s("dyrham.jpg") },
|
||||
{ title: "The Red Arrows at Abingdon Air Show", src: s("red_arrows.png") },
|
||||
{ title: "Going on a bike ride", src: s("bikeride") },
|
||||
{ title: "Rambling round the countryside", src: s("signpost") },
|
||||
{ title: "Enjoying our new kayak", src: s("kayak") },
|
||||
{ title: "Visiting Dyrham Park", src: s("dyrham") },
|
||||
{
|
||||
title: "The Red Arrows at Abingdon Air Show",
|
||||
src: s("red_arrows", "png"),
|
||||
},
|
||||
{
|
||||
title: "Beaulieu Motor Mueseum (our first live gig since You Know What)",
|
||||
src: s("car.jpg"),
|
||||
src: s("car"),
|
||||
},
|
||||
{ title: "Entertaining guests", src: s("naughtyGuest.jpg") },
|
||||
{ title: "Feasting on garden produce", src: s("garden_produce.jpg") },
|
||||
{ title: "Testing our projection room", src: s("bigscreen.jpg") },
|
||||
{ title: "Entertaining guests", src: s("naughtyGuest") },
|
||||
{ title: "Feasting on garden produce", src: s("garden_produce") },
|
||||
{ title: "Testing our projection room", src: s("bigscreen") },
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -91,11 +96,11 @@ The selling of Harrow continues. We're on buyer number three. This one made an o
|
||||
images={[
|
||||
{
|
||||
title: "Cutting the grass prior to viewings",
|
||||
src: s("harrow_grass.jpg"),
|
||||
src: s("harrow_grass"),
|
||||
},
|
||||
{
|
||||
title: "Our subsidence could be worse it seems",
|
||||
src: s("subsidence.jpg"),
|
||||
src: s("subsidence"),
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -104,7 +109,7 @@ The selling of Harrow continues. We're on buyer number three. This one made an o
|
||||
|
||||
To justify this page I'll leave you with the only bit of home improvement that we actually did over the summer
|
||||
|
||||
<Solocard title="We put up our coat rack" src={s("shelf.jpg")} />
|
||||
<Solocard title="We put up our coat rack" src={s("shelf")} />
|
||||
|
||||
Tune in next time for some actual work 😄
|
||||
|
||||
|
||||
Reference in New Issue
Block a user