Frank ========= Inspired by [Sinatra][0]'s simplicity and ease of use, Frank lets you build static sites using your favorite libs. Frank has a built in development server for previewing work as you develop. Frank also has a "dump" command for compiling and saving your work out to static html, css, and js. Frank uses [Tilt][1], so it comes with support for [Haml & Sass][2], [LESS][10], [Builder][3], [ERB][4], [Liquid][5], [Mustache][6], and [CoffeeScript][7]. Overview -------- Create a new project with: $ frank Then `cd ` and start up the server with: $ frankup ----------------------- Frank's holdin' it down... 0.0.0.0:3601 And you're ready to get to work. By default, dynamic templates are served from the `dynamic` folder and static files are served from the `static` folder. When you are finished: $ frankout # compile templates or $ frankout --production # compile and create folder structure suitable for serving from a production website Views & Layouts ------------------------- All of your templates, and less/sass/coffeescript go into `/dynamic`, by default. You are more than welcome to organize them into subfolders if you've got lots. ### Views Writing views is simple. Say you've got a `blog.haml`, in `/dynamic` just browse to `http://0.0.0.0:3601/blog` and your view will be parsed and returned as html. ### Layouts Layouts are also simple with Frank. By default, just create a `layout.haml` (or whichever language you like best), that contains a `yield`, and any views will be inserted into it at that point. Multiple layouts are also easy. In your `settings.yml`, do something like: layouts: - name: blog_layout only: [blog] - name: normal not: [blog, ajax] This tells Frank to use `blog_layout.haml` for `/blog`, and `normal.haml` for everything but `/blog' and '/ajax`. Partials & Helpers ------------------ Frank comes with a helper method, `render_partial`, for including partials in your views. In addition, you can also easily add your own helper methods to use. ### Partials To create a partial, make a new file like any of your other views, but prefix its name with an underscore. For example, if I have a partial named `_footer.haml`, I can include this in my Haml views like this: = render_partial 'footer' ### Helpers Helper methods are also easy. Just open up `helpers.rb` and add your methods to the `FrankHelpers` module; that's it. Use them just like `render_partial`. Built-in Helpers ---------------- Frank also comes with some handy helper methods for generating placeholder content. ### Placeholder Text You can easily generate dummy text like so: %p= lorem.sentences 3 This will return 3 sentences of standard [Lorem Ipsum][11]. `lorem` also has all of the following methods for generating dummy text: lorem.sentence # returns a single sentence lorem.words 5 # returns 5 individual words lorem.word lorem.paragraphs 10 lorem.paragraph lorem.date # accepts a strftime format argument lorem.name lorem.first_name lorem.last_name lorem.email ### Placeholder Images Likewise, Frank can generate placeholder images for you, from a selection of 10 pre-made images. For example, to generate `` tag with a random dummy image: %img{:src=> lorem.image( 500, 400 ) } The `lorem.image` helper returns a special Frank image URL. In this case, the returned image will be 500 pixels wide and 400 pixels tall. By default, Frank caches the images returned for each specific size. So every subsequent request for a `500x400` image will return the same thing. If you'd rather have a random image every time, just pass in `true` for the 3rd image: lorem.image( 100, 100, true ) # returns a random 100x100 image every time it's called ( NOTE: Unfortunately, in order to use the placeholder images, you must have a working [ImageMagick][12], and have the `mini_magick` gem installed as well. ) If you would like to use the placeholder images in a context where the helper methods are unavailable (e.g. in static CSS or JavaScript), you can access the URL directly with `/_img/500x400.jpg`, or for random images `/_img/500x400.jpg?random`. GET/POST params --------------- Sometimes it's nice to include user input in your mock-ups. It's especially handy when mocking-up Ajax-driven elements. For this reason, the `request` and `params` are available in your templates. For example, to use a person's name submitted through a form you might do: %h1= "Hello, #{params.name}" Configuration ------------- In `settings.yml`, you can change your folder names, and server port & host name. Check the comments there if you need help. (NOTE: In order to reduce confusion, Frank no longer checks for a `~/.frank` folder to copy when you run the `frank` command. Instead, the preferred method is just to create a base Frank project wherever you please, and just `cp -r` to the location of your new project, since this is all the `frank` command did anyway) Installation ------------ ### [Gemcutter](http://gemcutter.org/) $ gem install frank [0]: http://www.sinatrarb.com/ [1]: http://github.com/rtomayko/tilt [2]: http://haml-lang.com/ [3]: http://builder.rubyforge.org/ [4]: http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/ [5]: http://www.liquidmarkup.org/ [6]: http://github.com/defunkt/mustache [7]: http://jashkenas.github.com/coffee-script/ [8]: http://lesscss.org/ [9]: http://rack.rubyforge.org/ [10]: http://lesscss.org/ [11]: http://en.wikipedia.org/wiki/Lorem_ipsum [12]: http://www.imagemagick.org/script/binary-releases.php?ImageMagick=4pg9cdfr8e6gn7aru9mtelepr3