Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.