This is a static website built with the Hugo Bear Blog theme.
This theme is based on Bear Blog, a free, no-nonsense, super-fast blogging platform created by Herman.
To create a new page, run:
hugo new my-new-page.mdTo create a new blog post, run:
hugo new blog/$(date +%Y-%m-%d)-a-title/index.mdFor a more convenient workflow, you can add the scripts directory to your PATH:
export PATH="$PATH:./scripts"Then you can use the custom hugo-new script:
hugo-new "Your Blog Post Title"This script will:
- Create a new blog post with a date-prefixed filename
- Automatically select a random image from
/Users/fritz/Documents/framesand use it as the feature image
To run the development server:
hugo server --source ./exampleSite --themesDir ../..To deploy to GitHub Pages:
- Build the site:
hugo --source ./exampleSite --themesDir ../.. - Commit and push to your GitHub repository
Special thanks to Herman for creating the original Bear Blog platform, and to Jan Raasch for creating the Hugo theme.