The Miniakio 2 instructions on my blog(Chinese): http://serholiu.com/about-miniakio
This is my blog source code, powered by Tornado web framework.It's not yet a static blog generator, but it's really simple and lightweight,it has a blog engine must features, such as Category, Tag, Post, Page, Feed,now it's use sqlite3 database.
You need use Markdown markup language written post with your favorite editor, sign in blog and go to
/post/new
post it.Picky type post, just go to /post/picky
upload your markdown file.
Post (see example/post_example.md
):
# Title
- slug: title
- published: 2012-06-26 19:00
- tags: Test, Tornado, Python
- category: Work
------------------------------
This Content....
```python
import math
print math.sqrt(9)
```
Picky compare with Post,no tags, category and slug(see picky
folder).
Requirements:
- Install required package:
pip install -r requirements.txt
- Create Sqlite3 database: edit
tools.py
andpython tools.py -o createdb
- Disqus support: change
miniakio/templates/post.html
disqus_shortname
into your username. - Production suggest: See My blog(Chinese)
MIT LICENSE, see MIT-LICENSE.txt