This is the repository holding the sources for the go-hep.org website.
To add new content to the news
section:
git clone https://github.com/go-hep/go-hep.org
cd go-hep.org
hugo new "news/a-new-entry.md"
$EDITOR ./src/news/a-new-entry.md
cd go-hep.org
make serve
open http://localhost:8080
git checkout -b my-branch origin/master
git add -p
git commit -m "content: bla bla"
git push my-branch
git checkout master
make deploy