https://github.com/robertbasic/robertbasic.com-hugo
My website built with Hugo
https://github.com/robertbasic/robertbasic.com-hugo
Last synced: about 19 hours ago
JSON representation
My website built with Hugo
- Host: GitHub
- URL: https://github.com/robertbasic/robertbasic.com-hugo
- Owner: robertbasic
- Created: 2016-03-18T16:34:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-11-18T12:46:58.000Z (about 3 years ago)
- Last Synced: 2025-12-25T11:47:19.565Z (about 1 month ago)
- Language: HTML
- Homepage: http://robertbasic.com/
- Size: 4.99 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Content and theme for my website, built with [Hugo](http://gohugo.io/).
# hugo
`~/bin/hugo`
`hugo version`
`hugo server`
`hugo server -D` aliased as `blog`
`hugo new blog/slug-for-post.md` aliased as `blog-new` where `$1` is `slug-for-post`
`fab deploy` aliased as `blog-deploy`
Call `:BlogWrite` in vim to call frontmatter reoder, title to slug and turn on spellcheck.
## bash helpers
Put these in `~/.bashrc`
```
function blog() {
cd "/home/robert/projects/robertbasic.com-hugo/"
hugo server -D &> blog.log &
sleep 3s
firefox http://localhost:1313/blog/
}
function blog_stop() {
cd "/home/robert/projects/robertbasic.com-hugo/"
pkill hugo
rm blog.log
}
```
# writing
Change case for title: `:4vi"u~`