Skip to content

Instantly share code, notes, and snippets.

@jeffdean-galvanize
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save jeffdean-galvanize/d0840759460d0e1c5531 to your computer and use it in GitHub Desktop.

Select an option

Save jeffdean-galvanize/d0840759460d0e1c5531 to your computer and use it in GitHub Desktop.
Bootstrap components for gCamp
<%= form_for(@project, html: {class: "form-horizontal"} do |f| %>
<div class="form-group">
<%= f.label :description, class: "col-sm-2 control-label" %>
<div class="col-sm-4">
<%= f.text_field :description, class: "form-control" %>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10"> <br>
<%= f.submit name: button_name, class: "btn btn-primary"%>
</div>
</div>
<% end %>
<div class="page-header">
<div class="pull-right">
<%= link_to "This will be on the right", some_path %>
<%= link_to "So will this", some_other_path %>
</div>
<h1>Some page title</h1>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment