Created
June 11, 2013 15:48
-
-
Save JeffCohen/5758028 to your computer and use it in GitHub Desktop.
Example view helpers
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
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