Skip to content

Commit 8e8e245

Browse files
authored
Merge pull request #24 from Godje/new-version-2025
New version 2025
2 parents aecb2dd + 979371e commit 8e8e245

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2744
-10252
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Github Pages documentation is bad, so I had to follow a couple guides:
2+
# - https://www.geeksforgeeks.org/git/github-pages/
3+
# - https://docs.github.com/en/actions/tutorials/build-and-test-code/nodejs
4+
# - https://github.com/peaceiris/actions-gh-pages
5+
6+
name: Github Pages CI
7+
8+
on:
9+
push:
10+
branches: [ "master" ]
11+
pull_request:
12+
branches: [ "master" ]
13+
14+
workflow_dispatch:
15+
16+
jobs:
17+
build:
18+
runs-on: ubuntu-latest
19+
strategy:
20+
matrix:
21+
node-version: ['20.x']
22+
23+
steps:
24+
- uses: actions/checkout@v5
25+
- name: Use Node.js ${{ matrix.node-version }}
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
- run: npm install
30+
- run: npm run build
31+
- name: Deploy to GitHub Pages
32+
uses: peaceiris/actions-gh-pages@v4
33+
with:
34+
github_token: ${{ secrets.GITHUB_TOKEN }}
35+
publish_dir: ./public
36+

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
core
21
node_modules/
3-
MISC/
2+
public/
43
vimsession.vim
4+
Session.vim

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#### my website repository
1+
# Daniel Maiovskyi website repository
22

3-
### little bit of info
3+
This is an implementation of a personal website design I made in October 2025.
44

5-
- MVC library - [Mithril.js](https://mithril.js.org/)
6-
- Canvas animation script - [`./assets/js/background.js`](https://github.com/Godje/godje.github.io/blob/master/assets/js/background.js)
7-
- First page SCSS grid - [Toast.scss](https://github.com/daneden/Toast)
5+
## stack
6+
- 11ty.js static site generator
7+
- JavaScript

assets/client.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/css/styles.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/images/avatar.jpg

-32.1 KB
Binary file not shown.
-12.5 KB
Binary file not shown.

assets/images/sine_wave.png

-6.3 KB
Binary file not shown.

assets/images/spinning_stars.png

-58.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)