This is a hugo statically-generated site.
See here for instructions on installing Hugo.
Create a new page with hugo new posts/something.md
and the new page will be created in the content/posts dir.
Write your post in that new file. You can live preview with hugo serve -D
from the root directory.
To publish:
- Set "draft" to "false" on top the new content file (or just delete the line that says "draft: true").
git add
,git commit
andgit push
the new content. A few minutes after the git push, the new content will show up at fission.io/blog.
Blog title, social links, etc. are in config.toml.
Styling is under themes/. So is the site header and footer, where you can add meta tags or Google Analytics stuff.
The CSS framework used is tachyons.io; if you're changing the styling of the blog, there is probably a tachyons class already for what you're trying to do.
Changes to styling are pushed the same say way as changes to content
(run hugo
; git add
; git commit
; git push
).