Skip to content

Instantly share code, notes, and snippets.

@jgonzalezd
Created February 12, 2017 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgonzalezd/4c21e60a860136f21d89909fd8d63a90 to your computer and use it in GitHub Desktop.
Save jgonzalezd/4c21e60a860136f21d89909fd8d63a90 to your computer and use it in GitHub Desktop.
<% provide :title, 'Ofertas que valen la pena' %>
<%= content_for :script do%>
<%= javascript_include_tag 'pages/home' %>
<% end %>
<%= content_for :css do%>
<%= stylesheet_link_tag 'pages/home' %>
<% end %>
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<%= render 'pages/home/hero' %>
<div class="cover-container">
<%= render 'pages/home/search_form' %>
<div class="offers">
<%= render partial: "offers/offer", collection: @offers %>
</div>
<%= paginate @offers %>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment