https://github.com/ruzickap/petr.ruzicka.dev
Personal page
https://github.com/ruzickap/petr.ruzicka.dev
personal personal-website public web website
Last synced: 4 months ago
JSON representation
Personal page
- Host: GitHub
- URL: https://github.com/ruzickap/petr.ruzicka.dev
- Owner: ruzickap
- License: mit
- Created: 2019-03-01T11:58:13.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-06-29T02:27:04.000Z (about 1 year ago)
- Last Synced: 2025-06-29T03:40:49.236Z (about 1 year ago)
- Topics: personal, personal-website, public, web, website
- Language: HTML
- Homepage: https://petr.ruzicka.dev/
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Petr Ruzicka's Personal Website (petr.ruzicka.dev)
This repository contains the source code for Petr Ruzicka's personal website
(petr.ruzicka.dev), built with Hugo and the Aerial theme. The website
showcases his work as a DevOps specialist and SysAdmin, as well as his
photography.
[](https://github.com/ruzickap/petr.ruzicka.dev)
## Live Site
You can visit the live site at [https://petr.ruzicka.dev/](https://petr.ruzicka.dev/).
## Getting Started
To get a local copy up and running, follow these simple steps.
### Prerequisites
Make sure you have Git installed on your system.
### Cloning
1. Clone the repo:
```bash
git clone --recurse-submodules https://github.com/ruzickap/petr.ruzicka.dev.git
```
2. Navigate to the project directory:
```bash
cd petr.ruzicka.dev || exit
```
## Theme
This site uses the [Aerial](https://github.com/cewood/aerial) theme for Hugo.
## Installing Hugo
Hugo is required to build and run this website. You can install it as follows:
### Mac
```bash
brew update && brew install hugo
```
Just download binary from [https://github.com/gohugoio/hugo/releases](https://github.com/gohugoio/hugo/releases)
## Running Locally
Once you have cloned the repository and installed Hugo, you can run the site locally.
- Run local web server:
```bash
hugo server --buildDrafts
```
- Generate new version (for deployment):
```bash
hugo -d public
```