This is the content for a sketch of a new S44 home page, using hugo
, a static
site generator.
To add content:
- install
hugo
: http://gohugo.io/overview/quickstart/ - clone this repo somewhere:
git clone --recursive [email protected]:spring1944/s44-hugo.git
- create a page:
hugo new blorg.md
- write/edit some content:
vim|emacs|nano|notepad++ blorg.md
- check out how it looks:
hugo server -t hugo-incorporated --watch --buildDrafts
, then browse tolocalhost:1313
. goto 4 until $done;
- once you're happy with your stuff, kill
hugo
, then just runhugo -t hugo-incorporated
. cd public/ && git commit -am "new page" && git push origin master
. Note: this is pushing to spring1944/spring1944.github.io, which is a module of s44-hugo.- Now your page is on spring1944.github.io. Yay!
- You should probably also commit the markdown files and push them to this repo, if you want your changes to stick.
cd s44-hugo && git commit -am "made a new page" && git push origin master
- Done!
- Just kidding. Add more content!