Skip to content

Instantly share code, notes, and snippets.

@JeffCohen
Created June 11, 2013 15:48
Show Gist options
  • Save JeffCohen/5758028 to your computer and use it in GitHub Desktop.
Save JeffCohen/5758028 to your computer and use it in GitHub Desktop.
Example view helpers
link_to "Search", "http://www.google.com"
link_to "Buy Something", "http://www.amazon.com"
link_to "Delete Something", "/items/4", method: 'delete'
link_to "Delete Something!", "/items/4", method: 'delete'
link_to "My Link", "/items/4", class: 'my-link-style'
image_tag "http://example.com/photo.jpg"
image_tag "logo.png"
image_tag "http://example.com/photo.jpg", size: '80x120'
image_tag "http://example.com/photo.jpg", width: '60px'
image_tag "logo.png", class: 'slideshow'
<%= form_tag "/search" do %>
<input placeholder="Enter a keyword here...">
<% end %>
<%= form_tag "/items/5", method: 'put' do %>
<input placeholder="Search...">
<% end %>
<%= text_field_tag "first_name" %>
<%= text_field_tag "first_name", "Jeff" %>
<%= submit_tag %>
<%= submit_tag "Go" %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment