> In Indico we are using mostly jQueryUI. I personally like bootstrap for > projects that do not require lots of fancy widgets.
We can combine both see: http://addyosmani.github.com/jquery-ui-bootstrap/ > I see that LessCSS is also mentioned in your wiki page. I think it's a > really good idea/concept. However, there seems to be no Python > implementation of the compiler (it's Node.js). There are other similar > alternatives that are more Python-friendly and seem to work OK (PySCSS, > ...). > > BTW, in our master branch we are already using this little module that > may be of interest to you guys: > > http://webassets.readthedocs.org/ In my flask branch, I'm also using webassets plus my tiny extension to collect css and js files in jinja2 template. Example: index.html {% extend 'page.html' %} {% css 'css/my_special.css'} page.html {% css 'css/invenio.css' %} {% assets get_css_bundle() %} template: ASSET_URL {% endassets %} Output: template: css/invenio.css template: css/my_special.css (also the same for s/css/js/) Cheers, Jiri

