A set of snippets for Zurb's awesome responsive HTML framework. Going to add more, but there are a few snippets at the moment to make your day a little better.
cd ~/Library/Application\ Support/TextMate/Bundles/
git clone git://github.com/liamr/Zurb-Foundation-Textmate-Bundle.git Zurb\ Foundation.tmbundle
###1.1 All snippets now have 'zf' prepended to avoid conflict with other installed Bundles. Updated documentation to reflect.
##Layout & Grid
<div class="container" id="name">
(cursor)
</div>
<div class="row" id="name">
(cursor)
</div>
<div class="container" id="name">
<div class="row" id="name">
(cursor)
</div>
</div>
zfc6
creates
<div class="six columns" id="name">
(cursor)
</div>
<div class="[one - tweleve] column[s]" id="name">
(cursor)
</div>
<div class="container" id="#">
<div class="row" id="#">
<div class="six columns" id="#">
</div> <!-- End # -->
<div class="six columns" id="#">
</div> <!-- End # -->
</div>
</div>
##Buttons
<a href="#" class="[small, medium, large] [white, blue, red, black] button">(Cursor)</a>
<a href="#" class="nice radius [small, medium, large] [white, blue, red, black] button">(Cursor)</a>
##Block Grids
<ul class="block-grid five-up">
<li></li>
</ul>
##More coming soon I want to add more as soon as possible, and also work this into a Sublime Text 2 bundle! If you have suggestions let me know!
##Credit Cheers to Fred Oliveira - https://github.com/fredoliveira/textmate-960gs/blob/master/README.markdown - based mine off his 960.gs
Forked from https://github.com/liamr/Zurb-Foundation-Textmate-Bundle