Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
commit
345be6536e
3 changed files with 25 additions and 5 deletions
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
|
@ -2,9 +2,16 @@ name: Build Eleventy
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
paths-ignore:
|
||||||
|
- '/maintenance/**'
|
||||||
|
- '/README.md'
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '/maintenance/**'
|
||||||
|
- '/README.md'
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
@ -34,4 +41,4 @@ jobs:
|
||||||
uses: peaceiris/actions-gh-pages@v4
|
uses: peaceiris/actions-gh-pages@v4
|
||||||
with:
|
with:
|
||||||
publish_dir: ./docs
|
publish_dir: ./docs
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
||||||
17
README.md
17
README.md
|
|
@ -2,4 +2,19 @@
|
||||||
[](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/build.yml)
|
[](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/build.yml)
|
||||||
[](https://github.com/adrianvic/adrianvic.github.io/actions/workflows/pages/pages-build-deployment)
|
[](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.
|
||||||
|
|
||||||
|
<img src="./static/images/88x31/tenkuma.gif"><img src="./static/images/88x31/ai.gif">
|
||||||
|
|
||||||
|
## 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
|
||||||
|
|
|
||||||
|
|
@ -24,10 +24,8 @@ module.exports = {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
permalink: data => {
|
permalink: data => {
|
||||||
return `/${data.langKey}/misc/${data.page.fileSlug}/`;
|
return `/${data.langKey}/misc/${data.page.fileSlug}/`;
|
||||||
},
|
},
|
||||||
tags: "misc"
|
tags: "misc"
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue