About Archive Tag Cloud Translations RSS

You are writing a comment about Making Static Dynamic Again; AYM CMS, here is a quick summary:

A few lines of code and a few minutes of refactoring and my previous blog post evolved into a full-fledged static content management system based on the Django templating system. It aims to facilitate the creation of complex static websites quickly and with minimal human effort. Welcome to AYM CMS.


You are responding to this comment written by Polat Tuzla on November 19th 2008, 17:29.

Thank you very much for this solution. It was exactly what I needed. After having coded dynamic sites for a long time, it felt very awkward having to code each page separately. Besides, there was the need for automating many repetitive tasks.

One point to mention is that, I think the value of the STATIC_URL_FORMAT in settings.py should be

STATIC_URL_FORMAT = u"static/%s"
instead of
STATIC_URL_FORMAT = u"/static/%s"
At least for me, it works this way. Thanks again.


Please be aware that comment forms go stale after one hour.





Comments may make use of LifeFlow MarkDown. Raw html will be escaped.


Quick Introduction to LifeFlow MarkDown Syntax

A highlighted code block:

@@ ruby
def a (b, c):
  b * c
end
@@

Other common languages work as well: scheme, python, java, html, etc.

Other markdown syntax:

 ### This is an h3 title
#### This is an h4 title
**this is bold**
*this is italics*

1. This is an
2. ordered list

* And an unordered
* list too

[this is a link](http://www.lethain.com/ "Lethain")