Personal technical blog built with GitHub Pages + Jekyll.
Live site: https://ihybrd.github.io/
This repository hosts my personal engineering notes and project write-ups. The blog is focused on practical topics such as:
- coding experiments
- tooling and workflow notes
- project-specific technical walkthroughs
- GitHub Pages
- Jekyll
- Minima theme (
remote_theme: jekyll/minima)
_posts/: blog posts in Markdown_layouts/: custom page templatesimages/: static assets used by posts_config.yml: Jekyll site configurationabout.md: about page shown in navigation
- Create a Markdown file in
_posts/with this naming format:YYYY-MM-DD-your-title.md - Add front matter:
---
layout: post
title: "Your Post Title"
tags: [tag1, tag2]
---- Write content in Markdown.
- Commit and push to
main. GitHub Pages will publish automatically.
- This repo contains the blog source code, not generated static output.
- For link paths in posts, prefer root-relative paths (for example,
/images/bunny.jpg).
MIT. See LICENSE.