A personal blog built with Jekyll and hosted on GitHub Pages.
-
Install Ruby (if not already installed)
-
Install dependencies:
bundle install
-
Run the local server:
bundle exec jekyll serve -
View your site at
http://localhost:4000/dummyrepo/
- Push your changes to the
mainbranch - Go to Settings → Pages in your repository
- Set source to
mainbranch - Your site will be available at
https://robinharwood.github.io/dummyrepo/
├── _config.yml # Site configuration
├── _posts/ # Blog posts (YYYY-MM-DD-title.md)
├── assets/css/ # Custom styles
├── index.md # Homepage
├── about.md # About page
├── Gemfile # Ruby dependencies
└── .gitignore # Git ignore rules
Create a new file in _posts/ with the format YYYY-MM-DD-title.md:
---
layout: post
title: "Your Post Title"
date: YYYY-MM-DD HH:MM:SS -0000
categories: your-category
tags: [tag1, tag2]
---
Your content here...- Site settings: Edit
_config.yml - Styling: Modify
assets/css/style.scss - Theme: Using Minima (default Jekyll theme)