From 686239ea0350ddc399bd0fc3c8dc563933173e33 Mon Sep 17 00:00:00 2001 From: Nathan Upchurch Date: Mon, 2 Dec 2024 17:42:20 -0600 Subject: [PATCH] Implement image galleries --- README.md | 1 + _data/galleries.js | 248 ++++++++++++++++++ _includes/postslist.njk | 2 +- _includes/structuredData.njk | 2 +- content/about/index.md | 2 +- content/blog.njk | 2 +- content/feeds.njk | 2 + content/galleries.njk | 24 ++ content/galleries/index.njk | 32 +++ content/galleryImage.njk | 40 +++ content/now.njk | 3 - content/sitemap/index.njk | 1 + eleventy.config.js | 20 +- public/css/index.css | 56 +++- .../gallery/poptarts/pop_tart_flavor_1.webp | Bin 0 -> 27698 bytes .../gallery/poptarts/pop_tart_flavor_10.webp | Bin 0 -> 33642 bytes .../gallery/poptarts/pop_tart_flavor_11.webp | Bin 0 -> 34636 bytes .../gallery/poptarts/pop_tart_flavor_12.webp | Bin 0 -> 35530 bytes .../gallery/poptarts/pop_tart_flavor_13.webp | Bin 0 -> 29220 bytes .../gallery/poptarts/pop_tart_flavor_14.webp | Bin 0 -> 18496 bytes .../gallery/poptarts/pop_tart_flavor_15.webp | Bin 0 -> 25394 bytes .../gallery/poptarts/pop_tart_flavor_16.webp | Bin 0 -> 34532 bytes .../gallery/poptarts/pop_tart_flavor_17.webp | Bin 0 -> 30328 bytes .../gallery/poptarts/pop_tart_flavor_18.webp | Bin 0 -> 27950 bytes .../gallery/poptarts/pop_tart_flavor_19.webp | Bin 0 -> 21438 bytes .../gallery/poptarts/pop_tart_flavor_2.webp | Bin 0 -> 31452 bytes .../gallery/poptarts/pop_tart_flavor_20.webp | Bin 0 -> 29914 bytes .../gallery/poptarts/pop_tart_flavor_21.webp | Bin 0 -> 21542 bytes .../gallery/poptarts/pop_tart_flavor_22.webp | Bin 0 -> 32600 bytes .../gallery/poptarts/pop_tart_flavor_23.webp | Bin 0 -> 40952 bytes .../gallery/poptarts/pop_tart_flavor_24.webp | Bin 0 -> 11118 bytes .../gallery/poptarts/pop_tart_flavor_25.webp | Bin 0 -> 30906 bytes .../gallery/poptarts/pop_tart_flavor_26.webp | Bin 0 -> 33536 bytes .../gallery/poptarts/pop_tart_flavor_27.webp | Bin 0 -> 24198 bytes .../gallery/poptarts/pop_tart_flavor_28.webp | Bin 0 -> 27768 bytes .../gallery/poptarts/pop_tart_flavor_29.webp | Bin 0 -> 25050 bytes .../gallery/poptarts/pop_tart_flavor_3.webp | Bin 0 -> 28724 bytes .../gallery/poptarts/pop_tart_flavor_30.webp | Bin 0 -> 12026 bytes .../gallery/poptarts/pop_tart_flavor_31.webp | Bin 0 -> 22124 bytes .../gallery/poptarts/pop_tart_flavor_32.webp | Bin 0 -> 41848 bytes .../gallery/poptarts/pop_tart_flavor_33.webp | Bin 0 -> 13216 bytes .../gallery/poptarts/pop_tart_flavor_4.webp | Bin 0 -> 24284 bytes .../gallery/poptarts/pop_tart_flavor_5.webp | Bin 0 -> 23244 bytes .../gallery/poptarts/pop_tart_flavor_6.webp | Bin 0 -> 27002 bytes .../gallery/poptarts/pop_tart_flavor_7.webp | Bin 0 -> 36360 bytes .../gallery/poptarts/pop_tart_flavor_8.webp | Bin 0 -> 45854 bytes .../gallery/poptarts/pop_tart_flavor_9.webp | Bin 0 -> 18436 bytes 47 files changed, 420 insertions(+), 15 deletions(-) create mode 100644 _data/galleries.js create mode 100644 content/galleries.njk create mode 100644 content/galleries/index.njk create mode 100644 content/galleryImage.njk create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_1.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_10.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_11.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_12.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_13.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_14.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_15.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_16.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_17.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_18.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_19.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_2.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_20.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_21.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_22.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_23.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_24.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_25.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_26.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_27.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_28.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_29.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_3.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_30.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_31.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_32.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_33.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_4.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_5.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_6.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_7.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_8.webp create mode 100644 public/img/gallery/poptarts/pop_tart_flavor_9.webp diff --git a/README.md b/README.md index afaf2b4..e0d04d6 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ My blog, originally based on the very helpful eleventy-base-blog v8, although it * Each individual tag * /now page that nicely handles posts tagged with "now" * Blogroll generated from _data/blogroll.js, with an automatically updated .opml so that visitors can import every blog in the list +* Image galleries ### Technical * Reusable web components: diff --git a/_data/galleries.js b/_data/galleries.js new file mode 100644 index 0000000..5000236 --- /dev/null +++ b/_data/galleries.js @@ -0,0 +1,248 @@ +export default [ + { + title: "Pop Tart Flavor Memes", + description: + "One day, almost certainly when I ought to have been doing something more important, I discovered a meme format featuring Pop Tart boxes edited to have outlandish flavors on the packaging. Naturally, I had to collect as many as I could find. Here's what I've got:", + synopsis: "Some very unusual Pop Tart flavors…", + url: "/img/gallery/poptarts/", + date: new Date("November 26, 2024"), + galleryImage: "pop_tart_flavor_2.webp", + galleryImageAlt: "", + pictures: [ + { + title: "Frosted New England Clam Chowder", + filename: "pop_tart_flavor_1.webp", + altText: "", + thumbAltText: "Frosted New England Clam Chowder", + caption: "", + }, + { + title: "Frosted Tree Bark", + filename: "pop_tart_flavor_2.webp", + altText: "", + thumbAltText: "Frosted Tree Bark", + caption: "", + }, + { + title: "Frosted Boot Leather", + filename: "pop_tart_flavor_3.webp", + altText: "", + thumbAltText: "Frosted Boot Leather", + caption: "I've dropped this bad boy on a twitter thread or two.", + }, + { + title: "Frosted Kermit", + filename: "pop_tart_flavor_4.webp", + altText: "", + thumbAltText: "Frosted Kermit", + caption: "Is it worth it?", + }, + { + title: "Frosted Bare Chest", + filename: "pop_tart_flavor_5.webp", + altText: "", + thumbAltText: "Frosted Bare Chest", + caption: "", + }, + { + title: "Frosted Lysol Wipes", + filename: "pop_tart_flavor_6.webp", + altText: "", + thumbAltText: "Frosted Lysol Wipes", + caption: "", + }, + { + title: "Mine Tarts", + filename: "pop_tart_flavor_7.webp", + altText: "Minecraft Frosted Grass Block", + thumbAltText: "Minecraft Frosted Grass Block", + caption: "", + }, + { + title: "Frosted Earth Worms", + filename: "pop_tart_flavor_8.webp", + altText: "", + thumbAltText: "Frosted Earth Worms", + caption: "", + }, + { + title: "Frosted Ground Beef", + filename: "pop_tart_flavor_9.webp", + altText: "", + thumbAltText: "Frosted Ground Beef", + caption: "", + }, + { + title: "Frosted Black Coffee", + filename: "pop_tart_flavor_10.webp", + altText: "", + thumbAltText: "Frosted Black Coffee", + caption: "Unironically: I'd eat this.", + }, + { + title: "Frosted Gasoline", + filename: "pop_tart_flavor_11.webp", + altText: "", + thumbAltText: "Frosted Gasoline", + caption: "", + }, + { + title: "Frosted Tide Pods", + filename: "pop_tart_flavor_12.webp", + altText: "", + thumbAltText: "Frosted Tide Pods", + caption: `I once saw a lady drop a container of Tide Pods in the supermarket; without thinking I blurted out: "Oop, five second rule!" and didn't even get a laugh. Brutal.`, + }, + { + title: "Frosted Hot Dog Water", + filename: "pop_tart_flavor_13.webp", + altText: "", + thumbAltText: "Frosted Hot Dog Water", + caption: + "Frankly, I'd sooner have the frosted lysol wipe Pop Tarts. 🤮", + }, + { + title: "NY Style Sewer Rat", + filename: "pop_tart_flavor_14.webp", + altText: "", + thumbAltText: "NY Style Sewer Rat", + caption: "", + }, + { + title: "Frosted Caviar", + filename: "pop_tart_flavor_15.webp", + altText: "", + thumbAltText: "Frosted Caviar", + caption: "", + }, + { + title: "Frosted Elmer's Glue", + filename: "pop_tart_flavor_16.webp", + altText: "", + thumbAltText: "Frosted Elmer's Glue", + caption: "", + }, + { + title: "Crusty!", + filename: "pop_tart_flavor_17.webp", + altText: "Crusty! Cement Flavor", + thumbAltText: "Crusty! Cement Flavor", + caption: "", + }, + { + title: "Frosted Nuclear Waste", + filename: "pop_tart_flavor_18.webp", + altText: "Frosted Nuclear Waste: Made with real waste!", + thumbAltText: "Frosted Nuclear Waste: Made with real waste!", + caption: "", + }, + { + title: "Frosted Beans", + filename: "pop_tart_flavor_19.webp", + altText: "", + thumbAltText: "Frosted Beans", + caption: "I'd give it a shot.", + }, + { + title: "Shower Pack", + filename: "pop_tart_flavor_20.webp", + altText: + "Shower Pack, 3 in 1 formula! Shampoo, conditioner, and body wash.", + thumbAltText: + "Shower Pack, 3 in 1 formula! Shampoo, conditioner, and body wash.", + caption: "", + }, + { + title: "Limited Edition", + filename: "pop_tart_flavor_21.webp", + altText: "Limited Edition: Just the Crust", + thumbAltText: "Limited Edition: Just the Crust", + caption: "", + }, + { + title: "Frosted McDonald's Sprite", + filename: "pop_tart_flavor_22.webp", + altText: "Frosted", + thumbAltText: "Frosted", + caption: "", + }, + { + title: "Frosted Fresh Cut Grass", + filename: "pop_tart_flavor_23.webp", + altText: "", + thumbAltText: "Frosted Fresh Cut Grass", + caption: "", + }, + { + title: "Frosted Windex", + filename: "pop_tart_flavor_24.webp", + altText: "", + thumbAltText: "Frosted Windex", + caption: "", + }, + { + title: "Frosted Popcorn Ceiling", + filename: "pop_tart_flavor_25.webp", + altText: "", + thumbAltText: "Frosted Popcorn Ceiling", + caption: "", + }, + { + title: "Frosted Sharkboy & Lavagirl", + filename: "pop_tart_flavor_26.webp", + altText: "", + thumbAltText: "Frosted Sharkboy & Lavagirl", + caption: "", + }, + { + title: "Frosted The Sun", + filename: "pop_tart_flavor_27.webp", + altText: "", + thumbAltText: "Frosted The Sun", + caption: "I don't know why, but I feel like these would be delicious.", + }, + { + title: "Frosted Axe", + filename: "pop_tart_flavor_28.webp", + altText: "Frosted Axe body Spray", + thumbAltText: "Frosted Axe body Spray", + caption: "I would simply die.", + }, + { + title: "Frosted Miracle Whip", + filename: "pop_tart_flavor_29.webp", + altText: "", + thumbAltText: "Frosted Miracle Whip", + caption: "", + }, + { + title: "Frosted Water", + filename: "pop_tart_flavor_30.webp", + altText: "", + thumbAltText: "Frosted Water", + caption: "I'd give it a shot.", + }, + { + title: "Encrusted", + filename: "pop_tart_flavor_31.webp", + altText: "Encrusted Play-Doh", + thumbAltText: "Encrusted Play-Doh", + caption: "They'd smell delicious at least.", + }, + { + title: "Frosted Aluminum Foil", + filename: "pop_tart_flavor_32.webp", + altText: "", + thumbAltText: "Frosted Aluminum Foil", + caption: "", + }, + { + title: "Frosted Orange Juice and Toothpaste", + filename: "pop_tart_flavor_33.webp", + altText: "", + thumbAltText: "Frosted Orange Juice and Toothpaste", + caption: "Honestly, this may be the worst of them all.", + }, + ], + }, +]; diff --git a/_includes/postslist.njk b/_includes/postslist.njk index 069c287..7fc3523 100644 --- a/_includes/postslist.njk +++ b/_includes/postslist.njk @@ -15,7 +15,7 @@ - {% if post.data.synopsis %}

{{ post.data.synopsis | truncate(105) | safe }}

{% else %}{{ post.content | truncate(105) | safe }}{% endif %} + {% if post.data.synopsis %}

{{ post.data.synopsis | truncate(105) | safe }}

{% else %}{{ post.data.description | truncate(105) | safe }}{% endif %} {% endfor %} diff --git a/_includes/structuredData.njk b/_includes/structuredData.njk index 54a920f..e2b4ddd 100644 --- a/_includes/structuredData.njk +++ b/_includes/structuredData.njk @@ -1,4 +1,4 @@ -{% if title %} +{% if title and structuredData != "none" %}