light_blog hg clone http://hg.clarus.me/light_blog
view Makefile @ 44:55bdb2143414
Article 'LightBlog le moteur de blogs léger'
| author | Guillaume Claret <guillaume@claret.me> |
|---|---|
| date | Mon Dec 12 18:33:26 2011 +0100 (5 months ago) |
| parents | 76c79d1a8424 |
| children |
line source
1 # Blog's title
2 TITLE="Clarus' blog"
3 # Root url
4 URL="http://blog.clarus.me/"
5 # Login on Disqus (you need an account to use the comment system)
6 DISQUS="clarusblog"
8 all: clean
9 mkdir blog
10 ln -s `pwd`/static blog/static
11 ruby light_blog.rb $(TITLE) $(URL) $(DISQUS)
13 clean:
14 rm -Rf blog/
