https://github.com/linuskmr/linu.sk
My homepage
https://github.com/linuskmr/linu.sk
homepage zola
Last synced: 3 months ago
JSON representation
My homepage
- Host: GitHub
- URL: https://github.com/linuskmr/linu.sk
- Owner: linuskmr
- Created: 2024-01-28T10:29:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-20T18:08:42.000Z (6 months ago)
- Last Synced: 2025-04-20T19:23:34.897Z (6 months ago)
- Topics: homepage, zola
- Language: CSS
- Homepage: https://linu.sk
- Size: 25.5 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# linu.sk
This is the source code of my personal website hosted at [linu.sk](https://linu.sk). It is built using [Zola](https://www.getzola.org), a static site generator (SSG) written in Rust.
> Feel free to open an issue or pull request if you think something could be improved!
## Building the Website
### Prerequisites
Clone this repository:
```
git clone git@github.com:linuskmr/linu.sk.git
```Install the Zola SSG as described at [getzola.org > Installation](https://www.getzola.org/documentation/getting-started/installation/).
### Live Preview
For a live preview of the site with hot reloading, run:
```
zola serve
```### Build the Website to Static HTML
To build the website to the `output` directory, run:
```
zola build
```You can then serve the website using any webserver, e.g.:
```
python3 -m http.server
``````