From 5b2541c6c612275c24e2509b492b8f2b1aa382eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Oct 2025 02:34:55 +0000 Subject: [PATCH 1/2] build(deps): bump third-party/beautiful-jekyll Bumps [third-party/beautiful-jekyll](https://github.com/LizardByte/beautiful-jekyll-next) from `af0fd55` to `177c8c7`. - [Commits](https://github.com/LizardByte/beautiful-jekyll-next/compare/af0fd55369a6014908dddd49c0bf6a072713cd3b...177c8c728b25ee48efaba51be7e8933dfe4b2d2c) --- updated-dependencies: - dependency-name: third-party/beautiful-jekyll dependency-version: 177c8c728b25ee48efaba51be7e8933dfe4b2d2c dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- third-party/beautiful-jekyll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/beautiful-jekyll b/third-party/beautiful-jekyll index af0fd553..177c8c72 160000 --- a/third-party/beautiful-jekyll +++ b/third-party/beautiful-jekyll @@ -1 +1 @@ -Subproject commit af0fd55369a6014908dddd49c0bf6a072713cd3b +Subproject commit 177c8c728b25ee48efaba51be7e8933dfe4b2d2c From b97826b519b3a5c880cc54c41bd9bedf01db029d Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 21 Oct 2025 22:37:30 -0400 Subject: [PATCH 2/2] Add Amazon affiliate products integration Enabled Amazon affiliate products in the theme configuration, added a data file listing products with tags for categorization, and created an API endpoint to serve product data as JSON. This allows for dynamic display and usage of affiliate products across the site. --- _config_theme.yml | 5 ++++ _data/amazon_products.yml | 55 +++++++++++++++++++++++++++++++++++++++ api/amazon_products.json | 4 +++ 3 files changed, 64 insertions(+) create mode 100644 _data/amazon_products.yml create mode 100644 api/amazon_products.json diff --git a/_config_theme.yml b/_config_theme.yml index 96bd9c01..9fc387eb 100644 --- a/_config_theme.yml +++ b/_config_theme.yml @@ -3,6 +3,11 @@ title: LizardByte author: LizardByte + +amazon_products: + enabled: true + affiliate_tag: 'lizardbyte-blog-20' + navbar-links: ❤ Donate: - GitHub: "https://github.com/sponsors/LizardByte" diff --git a/_data/amazon_products.yml b/_data/amazon_products.yml new file mode 100644 index 00000000..2fbde900 --- /dev/null +++ b/_data/amazon_products.yml @@ -0,0 +1,55 @@ +--- +# Amazon Affiliate Products +# Each product can have multiple tags for categorization +# Tags help match products to relevant blog posts +# Note: The affiliate tag is configured in _config.yml as 'amazon_products.affiliate_tag' + +- title: >- + ASUS TUF Gaming GeForce RTX ™ 5070 12GB GDDR7 OC Edition Gaming Graphics Card + (PCIe® 5.0, HDMI®/DP 2.1, 3.125-slot, Military-Grade Components, Protective PCB Coating, axial-tech Fans) + image: "https://m.media-amazon.com/images/I/815-M4vy8JL._AC_SL1500_.jpg" + link: "https://www.amazon.com/dp/B0DS6S98ZF" + tags: + - gpu + - computer hardware + - gaming + - streaming + +- title: "AMD Ryzen™ 9 9900X 12-Core, 24-Thread Unlocked Desktop Processor" + image: "https://m.media-amazon.com/images/I/61dukbEGziL._AC_SL1500_.jpg" + link: "https://www.amazon.com/dp/B0D6NN87T8" + tags: + - cpu + - computer hardware + - gaming + - streaming + +- title: >- + Elgato Stream Deck MK.2 – + Studio Controller, 15 macro keys, trigger actions in apps and software like OBS, Twitch, ​YouTube and more, + works with Mac and PC + image: "https://m.media-amazon.com/images/I/61gtdFnK+UL._AC_SL1500_.jpg" + link: "https://www.amazon.com/dp/B09738CV2G" + tags: + - streaming + - accessories + - content creation + +- title: "Logitech for Creators Blue Microphones Yeti USB Microphone (Blackout)" + image: "https://m.media-amazon.com/images/I/61KTMvS5JBL._AC_SL1500_.jpg" + link: "https://www.amazon.com/dp/B00N1YPXW2" + tags: + - audio + - streaming + - content creation + - accessories + +- title: >- + SAMSUNG 990 PRO SSD 2TB NVMe M.2 PCIe Gen4, M.2 2280 Internal Solid State Hard Drive, + Seq. Read Speeds Up to 7,450 MB/s for High End Computing, Gaming, and Heavy Duty Workstations, MZ-V9P2T0B/AM + image: "https://m.media-amazon.com/images/I/71OWtcxKgvL._AC_SL1500_.jpg" + link: "https://www.amazon.com/dp/B0BHJJ9Y77" + tags: + - storage + - computer hardware + - gaming diff --git a/api/amazon_products.json b/api/amazon_products.json new file mode 100644 index 00000000..fd087fd5 --- /dev/null +++ b/api/amazon_products.json @@ -0,0 +1,4 @@ +--- +layout: null +--- +{{ site.data.amazon_products | jsonify }}