Simple CMS using web.py and Markdown

Posted on Fri 18 November 2011 in Python • Tagged with python, web.py, webapplicationsLeave a comment

With a bit of code you can build a simple but powerful, single page, CMS using python, web.py and content stored in markdown files.

1) the application: application.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20 ...
Continue reading