Skip to content

Commit 9b1d611

Browse files
committed
Refactor: Migrate from Jekyll to pure HTML/CSS/JS with modern design
- Remove Jekyll build system and dependencies (_config.yml, _includes/, _sass/) - Implement pure HTML/CSS/JS website with responsive design - Adopt Google-style design with Google Sans Display and Roboto fonts - Apply Google Blue accent color throughout - Update Maven Central statistics with real download numbers - Convert all markdown pages (.md) to static HTML pages - Update GitHub Actions workflow to deploy static files directly - Pages: index.html, features.html, api.html, contribute.html This is a major refactor that simplifies the site architecture while maintaining all existing content and improving the user experience. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5d067e1 commit 9b1d611

20 files changed

Lines changed: 1912 additions & 347 deletions
Lines changed: 11 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,35 @@
1-
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2-
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
1+
# Deploy static site to GitHub Pages
2+
name: Deploy to GitHub Pages
33

44
on:
5-
# Runs on pushes targeting the default branch
65
push:
76
branches: ["main"]
8-
9-
# Allows you to run this workflow manually from the Actions tab
107
workflow_dispatch:
118

12-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
139
permissions:
1410
contents: read
1511
pages: write
1612
id-token: write
1713

18-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2014
concurrency:
2115
group: "pages"
2216
cancel-in-progress: false
2317

2418
jobs:
25-
# Build job
26-
build:
27-
runs-on: ubuntu-latest
28-
steps:
29-
- name: Checkout
30-
uses: actions/checkout@v3
31-
- name: Setup Pages
32-
uses: actions/configure-pages@v3
33-
- name: Build with Jekyll
34-
uses: actions/jekyll-build-pages@v1
35-
with:
36-
source: ./
37-
destination: ./_site
38-
- name: Upload artifact
39-
uses: actions/upload-pages-artifact@v1
40-
41-
# Deployment job
4219
deploy:
4320
environment:
4421
name: github-pages
4522
url: ${{ steps.deployment.outputs.page_url }}
4623
runs-on: ubuntu-latest
47-
needs: build
4824
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v4
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v4
29+
- name: Upload artifact
30+
uses: actions/upload-pages-artifact@v3
31+
with:
32+
path: '.'
4933
- name: Deploy to GitHub Pages
5034
id: deployment
51-
uses: actions/deploy-pages@v2
35+
uses: actions/deploy-pages@v4

_config.yml

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

_includes/custom-head.html

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

_includes/footer.html

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

_includes/header.html

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

_sass/.DS_Store

-6 KB
Binary file not shown.

_sass/minima/custom-styles.scss

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

_sass/minima/custom-variables.scss

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

0 commit comments

Comments
 (0)