Eivind Uggedal (author)
Sun Nov 29 08:30:07 -0800 2009
reprise /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Mar 04 13:11:53 -0800 2009 | |
| |
LICENSE | Sun Jun 29 14:32:59 -0700 2008 | |
| |
README | Sat Mar 14 08:30:26 -0700 2009 | |
| |
reprise.py | Sun Nov 29 08:30:07 -0800 2009 | |
| |
reprise.rb | Wed Mar 04 11:27:57 -0800 2009 |
README
Reprise - As minimal a hAtom blog as possible
1. vi entries/YYYY.MM.DD.Entry.Title.in.Camel.Case
2. Tag your entries by making the first line read:
Tags: sometag anothertag lasttag
The tag preamble should be followed by a blank line.
3. For Ruby version:
gem install BlueCloth rubypants haml ratom
For Python version:
easy_install markdown smartypants Jinja2 lxml Pygments
4. ./reprise.rb or ./reprise.py
5. Hook up public/ to a web server like nginx
6. Rewrite requests from /.+/ to /.+\.html/:
if (-f $request_filename.html) {
rewrite (.*) $1.html break;
}
