From c290599f9ebd157833a538019db8704a93803be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A9=E3=82=AF=E3=83=9E?= <85490958+adrianvic@users.noreply.github.com> Date: Tue, 21 Apr 2026 22:09:42 -0300 Subject: [PATCH 1/3] Remove duplicate languages definition causing permalink clash --- misc/misc.11tydata.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/misc/misc.11tydata.js b/misc/misc.11tydata.js index c57590f..b83d842 100644 --- a/misc/misc.11tydata.js +++ b/misc/misc.11tydata.js @@ -24,11 +24,9 @@ module.exports = { return {}; } }, - - - languages: ["en", "pt"], + permalink: data => { return `/${data.langKey}/misc/${data.page.fileSlug}/`; }, tags: "misc" -}; \ No newline at end of file +}; From 90b02b03f0a9a61ca7fc761a383184a940c89302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A9=E3=82=AF=E3=83=9E?= <85490958+adrianvic@users.noreply.github.com> Date: Tue, 21 Apr 2026 22:31:30 -0300 Subject: [PATCH 2/3] Update README.md --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b6ba6f5..90cdf33 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,19 @@ [![Build Eleventy](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/build.yml/badge.svg)](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/build.yml) [![pages-build-deployment](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/pages/pages-build-deployment) -My personal website/blog. +My personal static website/blog built with Eleventy. + + + +## Interesting features + - Multiple pages + - Text support + - Interactive + +## Features that are not interesting at all + - Localization support with global/page string table + - Reusable elements with Eleventy's macros + - Responsive design for computers, medium sized devices and smartphones + - Functional without JavaScript + - Robust blog functionality with support for linking post translations with a common internal ID + - Some elements have hints while hovering, they update the text of a hint bar on the website header From 3596f1806660c4e4e995c36de9c2173975760f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A9=E3=82=AF=E3=83=9E?= <85490958+adrianvic@users.noreply.github.com> Date: Wed, 22 Apr 2026 08:14:49 -0300 Subject: [PATCH 3/3] Update build.yml to trigger on PRs --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 755aac5..392b2d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,16 @@ name: Build Eleventy on: push: + paths-ignore: + - '/maintenance/**' + - '/README.md' branches: - main workflow_dispatch: + pull_request: + paths-ignore: + - '/maintenance/**' + - '/README.md' permissions: contents: write @@ -34,4 +41,4 @@ jobs: uses: peaceiris/actions-gh-pages@v4 with: publish_dir: ./docs - github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + github_token: ${{ secrets.GITHUB_TOKEN }}