Created
April 16, 2012 15:05
-
-
Save traviskroberts/2399340 to your computer and use it in GitHub Desktop.
TextMate snippet for Bootstrap control group.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="control-group"> | |
<%= f.label_tag :${1:name}${2:, "${3:Name}"}, :class => "control-label${4: required}" %> | |
<div class="controls"> | |
<%= f.${5:text_field}, :${1}${6:, :class => "${7:span5}"} %> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See this gist for a helper method that will eliminate so much hard-coding in your views:
https://gist.github.com/2505143