36 lines
No EOL
617 B
Markdown
36 lines
No EOL
617 B
Markdown
# CCCSBG - Website
|
|
|
|
This is repository for the cccsbg.at Site.
|
|
|
|
## Build
|
|
|
|
### Submodules
|
|
|
|
The Theme is included as Submodule so you have to init the submodule and download it.
|
|
|
|
```bash
|
|
git submodule init
|
|
git submodule update --remote --merge
|
|
```
|
|
|
|
### Nodejs
|
|
|
|
We also need install the dependencies for TailwindCSS. Make sure you have pnpm installed.
|
|
|
|
```bash
|
|
pnpm i
|
|
cd themes/cccsbg-hugo-theme
|
|
pnpm i
|
|
cd ../../
|
|
```
|
|
|
|
### Hugo
|
|
|
|
If you don't have a new enough (minimum is v0.127.0) with `go install github.com/gohugoio/hugo@latest
|
|
`
|
|
|
|
```bash
|
|
hugo build
|
|
```
|
|
|
|
After this step, there should be files in the public folder. |