Created
May 1, 2013 21:40
-
-
Save gamanox/5498603 to your computer and use it in GitHub Desktop.
link_to
This file contains 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 "", {:controller => "share", :action => "travel", :id => ru[:Id]}, :class => "cont_route", {:remote => true} do %> | |
<img class='preview' src="<%= ru[:CoverPictureURL] %>" alt=""> | |
<span class="info_box"> | |
<p class="date"> | |
<%= ru[:Date].strftime("%d . %b . %Y") %> | |
</p> | |
<p class="title"> | |
<%= ru[:Name].upcase %> | |
</p> | |
<p class="autor"><span>Por: </span> | |
<%= ru[:Author] %> | |
</p> | |
<p class="location"> | |
<%= ru[:StartingAddress] %> | |
</p> | |
<div class="level medium"> | |
<p class="levellabel ">Nivel de ruta: <%= ru[:Difficulty] %></p> | |
<span class="separator"></span> | |
<div class="rating r3"> | |
<div class="star star<%=ru[:rating]%>"> | |
<img src="/assets/share/img_dificultad_media.png" alt=""> | |
</div> | |
</div> | |
</div> | |
<div class="share_social expanded"> | |
<p class="share">Compartir esta ruta </p> | |
<div class="fb">FACEBOOK</div> | |
<div class="tw">TWITTER</div> | |
</div> | |
</span> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment