diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index 6874b29..1a43f2c 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -30,7 +30,7 @@ jobs: build: runs-on: ubuntu-latest env: - HUGO_VERSION: 0.108.0 + HUGO_VERSION: 0.140.2 steps: - name: Install Hugo CLI run: | diff --git a/layouts/index.html b/layouts/index.html index 6127a05..cc6e7dd 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -183,7 +183,7 @@

+ +
+
+ +
+

@@ -284,35 +298,34 @@ * text-orange-900 */ - const lightColor = colors[Math.floor(Math.random() * colors.length)]; + const color = colors[Math.floor(Math.random() * colors.length)]; document .querySelectorAll(".fill-sky-100") .forEach(el => - el.classList.replace("fill-sky-100", `fill-${lightColor}-100`) + el.classList.replace("fill-sky-100", `fill-${color}-100`) ); document .querySelector("#tech-lancaster-meetup.bg-sky-100") - .classList.replace("bg-sky-100", `bg-${lightColor}-100`); + .classList.replace("bg-sky-100", `bg-${color}-100`); document .querySelector("#tech-lancaster-meetup .text-sky-900") - .classList.replace("text-sky-900", `text-${lightColor}-900`); + .classList.replace("text-sky-900", `text-${color}-900`); document .querySelectorAll("#tech-lancaster-meetup .text-sky-800") .forEach(el => - el.classList.replace("text-sky-800", `text-${lightColor}-800`) + el.classList.replace("text-sky-800", `text-${color}-800`) ); document .querySelectorAll("#tech-lancaster-meetup .text-sky-500") .forEach(el => - el.classList.replace("text-sky-500", `text-${lightColor}-500`) + el.classList.replace("text-sky-500", `text-${color}-500`) ); - const darkColor = colors[Math.floor(Math.random() * colors.length)]; document .querySelector("#other-meetups.bg-sky-400") - .classList.replace("bg-sky-400", `bg-${darkColor}-400`); + .classList.replace("bg-sky-400", `bg-${color}-400`); document .querySelector("#other-meetups .text-sky-800") - .classList.replace("text-sky-800", `text-${darkColor}-800`); + .classList.replace("text-sky-800", `text-${color}-800`); {{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index f5a0f3c..ca03dcb 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,6 +1,6 @@ -