So, you want to host your own blog using Micropage?

1. Write a post

Create a markdown (.md) file in Posts/. Start with three dashes, your title, and three dashes:


---
title: My first post
date: 2030-01-01
---

Your content goes here. Use **bold** or *italic* if you like.

That's called front matter. The only required field is title.

2. Build

Open a terminal in the Micropage folder and run:


./build.sh

Or if you have Python:


python3 build.py

Both produce the same public/ folder. You can also paste the script location in your terminal and run it:


/Downloads/Micropage/build.sh

3. Deploy

Upload the public/ folder anywhere that serves static files!