Last active
December 16, 2015 02:18
-
-
Save px-amaac/5361012 to your computer and use it in GitHub Desktop.
How to i get to this syntax from Rails.??
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
<ul class="clearing-thumbs" data-clearing> | |
<li><a href="path/to/your/img"><img data-caption="caption here..." src="path/to/your/img-th"></a></li> | |
<li><a href="path/to/your/img"><img data-caption="caption 2 here..." src="path/to/your/img-th"></a></li> | |
<li><a href="path/to/your/img"><img data-caption="caption 3 here..." src="path/to/your/img-th"></a></li> | |
</ul> |
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 '#' do %> | |
hiii <%= image_tag('/images/menu-arrow-down.gif') %> | |
<% end %> |
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 '#' %><%= image_tag('/images/menu-arrow-down.gif') %> |
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 image_tag ('/images/menu-arrow-down.gif') '#' %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment