4063826d3e | ||
---|---|---|
.github/workflows | ||
content | ||
layouts/partials | ||
public | ||
static | ||
themes | ||
.gitmodules | ||
.hugo_build.lock | ||
README.md | ||
config.toml |
README.md
WackAttack.eu
Source and configuration for our public-facing website.
Structure
This is is a fairly standard Hugo-site, as described in their docs
The most important files to edit:
content/
_index.md
: Front pagewriteups/pwn/bof.md
: Writeup for the challenge "bof" in the "pwn" category
config.toml
: Main config - Themes, menu links, etc.static/
: Files published directly, like logos, js and csslayouts/
: Override HTML from the theme, custom partials, etc.
Running in development
- Clone the repository with submodules
git clone --recursive git@github.com:felixalbrigtsen/wackattack-www.git
- Install hugo
- Edit files as you choose
- To make new pages, either use the CLI tool (
hugo new content writeups/pwn/bof
) or copy an existing one
- To make new pages, either use the CLI tool (
- Run dev server
hugo serve -D
(This also includes pages marked as draft) - Test that the site looks OK
- Light mode
- Dark mode
- Mobile
- Commit and push
- The changes will be pushed to production automatically when merged into
main
Deployment
The site is hosted on GitHub Pages, and will automatically update whenever something is pushed or merged into the main branch.