Guest User

Untitled

a guest
May 20th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <h1>Slides&Papers<h1>
  2.  
  3. <h3>Featured</h3>
  4.  
  5. <div class="clear"></div>
  6.  
  7. <div id="gallery" class="featured">
  8.  
  9. <% @featured.each do |feature| %>
  10. <div class="gallery_item center">
  11. <%= image_tag(feature) %><br />
  12. <%= link_to feature.filename, document_path(feature.user, feature) %>
  13. </div>
  14. <% end %>
  15.  
  16. </div>
  17.  
  18. <div class="clear"></div>
  19.  
  20. <h3>Latest</h3>
  21.  
  22. <div class="clear"></div>
  23.  
  24. <div id="gallery">
  25.  
  26. <% @presentations.each do |presentation| -%>
  27.  
  28. <div class="gallery_item center">
  29. <%= image_tag(presentation) %><br />
  30. <%= link_to presentation.filename, document_path(presentation.user, presentation) %>
  31. </div>
  32.  
  33. <% end -%>
  34.  
  35. </div>
  36.  
  37. <div class="clear"></div>
Add Comment
Please, Sign In to add comment