This is my personal blog hosted using GitHub Pages. Visit the blog at [username.github.io/repository-name].
This blog is built using HTML and CSS, hosted directly on GitHub Pages.
- Create a new markdown file in the
posts/
directory with a.md
extension. - Add YAML front matter at the top of your markdown file:
--- title: Your Post Title date: Month DD, YYYY ---
- Write your post content in markdown format below the front matter. The content will be automatically converted to HTML using the template when displayed on the website.
- Headers (# to ######)
- Bold and italic text (bold, italic)
- Lists (ordered and unordered)
- Links and images
- Code blocks (fenced with ```)
- Tables
- Blockquotes
- Horizontal rules
---
title: My Example Post
date: January 1, 2024
---
# My Example Post
This is a paragraph with **bold** and *italic* text.
## Subheading
- List item 1
- List item 2
- Nested item
### Code Example
```python
def hello_world():
print("Hello, World!")
For more information about markdown syntax, visit Markdown Guide.