Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rudickamladez/rudickamladez.cz
Association's website
https://github.com/rudickamladez/rudickamladez.cz
blog css html5 hugo netlify static-site
Last synced: about 1 month ago
JSON representation
Association's website
- Host: GitHub
- URL: https://github.com/rudickamladez/rudickamladez.cz
- Owner: rudickamladez
- Created: 2021-03-05T21:26:44.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-11T22:16:33.000Z (about 2 months ago)
- Last Synced: 2024-12-11T23:20:30.422Z (about 2 months ago)
- Topics: blog, css, html5, hugo, netlify, static-site
- Language: HTML
- Homepage: https://rudickamladez.cz
- Size: 14.3 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rudická mládež, z.s. – Association websites
[![Netlify Status](https://api.netlify.com/api/v1/badges/5ca3b951-6a99-4246-9682-3e9d6fa27fb2/deploy-status)](https://app.netlify.com/sites/rudickamladez/deploys)
This is a repository with content for our static [websites](https://rudickamladez.cz) generated by [Hugo](https://gohugo.io/).
It's inspired by [Jetlio's blog post](https://jetlio.com/cs/blog/uvod-do-static-site-generatoru-hugo-tvorba-webu-s-blogem/).## How to manage content
It's quite simple.
1. Install [git](https://git-scm.com/downloads).
1. Install [Docker](https://docs.docker.com/get-docker/) engine.
1. Install [Visual Studio Code](https://code.visualstudio.com/download).
1. Then install vscode *Dev Containers* extension. [VS Marketplace Link](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
1. Clone this repository and open it in vscode.```shell
# SSH
git clone [email protected]:rudickamladez/rudickamladez.cz.git && cd rudickamladez.cz && code .
# or HTTPS
git clone https://github.com/rudickamladez/rudickamladez.cz.git && cd rudickamladez.cz && code .
```1. Click to `Reopen in Container` button in the right bottom.
1. Then switch to your new git branch.```shell
git checkout -b new-branch
```1. Now you can open your web browser with local [environment](http://localhost:1313/).
1. Edit some stuff and check it in browser.
1. Create Git commit.
```shell
git commit -m "HERE DESCRIBE YOUR CHANGES"
```1. After some commits you can push the branch
```shell
git push origin new-branch
```1. When you check deploy preview on Netlify create a Pull Request.