This repository contains a lightweight Jekyll blog designed to publish on GitHub Pages.
Because this repository should be named blog, the site will publish at:
https://absieee.github.io/blog/
If the repository is still named something else on GitHub, rename it in the repository settings so the URL and _config.yml stay aligned.
- Create a new Markdown file in
_posts/ - Name it like
YYYY-MM-DD-title-goes-here.md - Add front matter at the top:
---
title: My new note
date: 2026-04-04 18:30:00 +0100
categories: [product]
summary: One-line summary for the homepage.
---- Write the post in Markdown below that block
- Commit and push to
main
productengineeringnotes
If you want to run the site locally later:
- Install Ruby and Bundler
- Run
bundle install - Run
bundle exec jekyll serve
This repo includes a GitHub Actions workflow that builds and deploys the site to GitHub Pages on every push to main.