summaryrefslogtreecommitdiff
path: root/README.md
blob: 0e0b3e89238e1b924e0a30aedc46dd3437821fd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# krz.sh

Source for [krz.sh](https://krz.sh) — the krazy warez website. Built with
[Zola](https://www.getzola.org/).

## Develop

```sh
zola serve
```

Then open http://127.0.0.1:1111.

## Build

```sh
zola build
```

Output is written to `public/`.

## Structure

- `config.toml` — site configuration
- `content/` — pages (home, `services/`, `apps/`, `about/`)
- `templates/` — Tera templates
- `sass/main.scss` — styles (compiled to `main.css`)
- `static/` — assets, `favicon.svg`, and `CNAME`

## Deploy

Pushing to `main` builds and publishes to GitHub Pages via
`.github/workflows/deploy.yml`. The custom domain is set in `static/CNAME`.