From e3d26c361b3af4d4c6d60c78314b3a2e2ade91ab Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 2 May 2026 20:04:40 +0000 Subject: [PATCH 1/3] Add Nunjucks button to footer between 11ty and Tailwind Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/17998eeb-b35f-412e-85dc-ec4382e6ab9b Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> --- src/_includes/footer-details.njk | 1 + 1 file changed, 1 insertion(+) diff --git a/src/_includes/footer-details.njk b/src/_includes/footer-details.njk index e7567f8d..6a60a4e8 100644 --- a/src/_includes/footer-details.njk +++ b/src/_includes/footer-details.njk @@ -14,6 +14,7 @@
🎈 11ty + 🔧 Nunjucks 🌊 Tailwind
From 714ba487de9341333555ee5d219b45bac11f7a4d Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 3 May 2026 06:15:52 +1000 Subject: [PATCH 2/3] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- src/_includes/footer-details.njk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/_includes/footer-details.njk b/src/_includes/footer-details.njk index 6a60a4e8..c1293f86 100644 --- a/src/_includes/footer-details.njk +++ b/src/_includes/footer-details.njk @@ -13,9 +13,9 @@

- 🎈 11ty - 🔧 Nunjucks - 🌊 Tailwind + 🎈 11ty + 🔧 Nunjucks + 🌊 Tailwind
From cdfc845f92289c0d4b25a953483630aba8b8a4ab Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 2 May 2026 20:43:34 +0000 Subject: [PATCH 3/3] Refactor footer tech buttons into Nunjucks loop with aria-label and rel=noopener noreferrer Agent-Logs-Url: https://github.com/NextCommunity/NextCommunity.github.io/sessions/ec46b339-e1b6-4c1b-9bcb-608018487de6 Co-authored-by: jbampton <418747+jbampton@users.noreply.github.com> --- src/_includes/footer-details.njk | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/_includes/footer-details.njk b/src/_includes/footer-details.njk index c1293f86..54d7066f 100644 --- a/src/_includes/footer-details.njk +++ b/src/_includes/footer-details.njk @@ -13,9 +13,13 @@

- 🎈 11ty - 🔧 Nunjucks - 🌊 Tailwind + {% for item in [ + { url: "https://www.11ty.dev/", text: "🎈 11ty", label: "11ty (opens in a new tab)" }, + { url: "https://mozilla.github.io/nunjucks/", text: "🔧 Nunjucks", label: "Nunjucks (opens in a new tab)" }, + { url: "https://tailwindcss.com/", text: "🌊 Tailwind", label: "Tailwind CSS (opens in a new tab)" } + ] %} + {{ item.text }} + {% endfor %}