Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 500 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 500 Bytes

Simple static blog (generator code and content)

Install

$ python3 -m venv .env
$ source .env/bin/activate
$ pip3 install -r requirements.txt

Make a post

$ mkdir posts/hello-world
$ echo 'Title: Hello, World!' > posts/hello-world/metadata.txt
$ echo 'Date: 2022-12-23' >> posts/hello-world/metadata.txt
$ echo 'Hello, world!' > posts/hello-world/hello-world.txt
$ make deploy

Demo

Visit blog.ilvokhin.com to see the working demo.