Skip to content

Migrate to Zola #1563

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Apr 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
- run: rustup override set ${{ env.RUST_VERSION }}
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8

- run: cargo run
- name: Install Zola
run: cargo install --locked --git https://github.com/senekor/zola --rev 620bf3c46a39b41db30b1e91756a995bbff84d3a
- run: zola build
- run: cp CNAME ./public/
- run: touch public/.nojekyll

Expand Down
25 changes: 16 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# generated by MacOS
.DS_Store
/target/
**/*.rs.bk
site
public
static/styles/vendor.css
static/styles/app.css
static/styles/fonts.css
static/styles/noscript.css
src/snapshots

# cargo output
/target

# zola output (site is deprecated, but people might still have them lying around)
/site
/public

# these are old compiled sass files, people might still have them lying arouynd
/static/styles/vendor.css
/static/styles/app.css
/static/styles/fonts.css
/static/styles/noscript.css

/snapshot/src/snapshots
Loading