jestersimpps.github.io
Personal blog built with Jekyll using the HPSTR theme.
Adding a New Blog Post
-
Create a new markdown file in
_posts/with the naming format:YYYY-MM-DD-your-post-slug.md -
Add frontmatter at the top:
--- layout: post title: "Your Post Title" description: "A short description for SEO and previews" date: YYYY-MM-DD author: "Jester Simpps" categories: [Development] tags: [Tag1, Tag2, Tag3] image: /images/your-image.jpg ---
-
Write your content in markdown below the frontmatter
-
If you have a cover image, add it to
images/
Running Locally
export PATH="/usr/local/opt/ruby@3.3/bin:$PATH"
cd /Users/jovinkenroye/Sites/jestersimpps.github.io
bundle exec jekyll serve --port 4001Then open http://127.0.0.1:4001/
Deploying
Push to the master branch - GitHub Pages will automatically build and deploy.
git add .
git commit -m "add new post"
git push