Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Library for making static websites with HAML/SASS/CSS framework [closed]

I'm looking for a library or a collection of libraries that work together with the following requirements:

  • HAML and SASS can be used.
  • Have a small server capability to see HAML/SASS compiled every time I refresh my browser. (I don't want to start a fresh Rails app, though.)
  • Works with popular CSS frameworks. (Doesn't have to be all, but major ones like 960gs and Blueprint)

Compass seems to be promissing, but it doesn't seem to support HAML. At least I'm looking for information that make Compass and HAML together.

Edit chriseppstein gave the list of cool stuff. I'll make a link to each one.

  • http://staticmatic.rubyforge.org/
  • http://github.com/tdreyno/middleman
  • http://nanoc.stoneship.org/
  • http://webby.rubyforge.org/user-manual/
  • http://github.com/jlong/serve
like image 662
TK. Avatar asked Jan 29 '10 11:01

TK.


People also ask

What is SASS library?

SASS is the most popular CSS preprocessor today. It allows you to supercharge your stylesheets with features like variables, mixins, functions, inheritance and nesting. There are hundreds of Sass libraries, frameworks and plugins that are available and can save you a lot of time when creating your website.

What is SASS Web development?

Sass stands for Syntactically Awesome Stylesheet. Sass is an extension to CSS. Sass is a CSS pre-processor. Sass is completely compatible with all versions of CSS. Sass reduces repetition of CSS and therefore saves time.

Is sass a framework?

Sass is a stylesheet language with a main implementation in Ruby. It is an extension of CSS that makes improvements to the old stylesheet format, such as being able to declare variables and using a cleaner nesting syntax.


1 Answers

There are several of these:

  • staticmatic
  • middleman
  • nanoc
  • webby

All of these support haml and sass and can be easily configured to work with compass too.

Additionally, there is "serve", which is just a simple webserver.

like image 188
chriseppstein Avatar answered Sep 21 '22 21:09

chriseppstein