Sha256: 4bcf432d69ec76d0307c6df1bacbd6e232b1e2f2b8bbe62754b64b4241d09746

Contents?: true

Size: 697 Bytes

Versions: 3

Compression:

Stored size: 697 Bytes

Contents

<%= row do %>
  <%= span(12) do %>
      <section>
        <div class="section-title">
          <%= current_page.title %>
        </div>
      </section>
  <% end %>
<% end %>


<% @dishes.in_groups_of(3, false).each do |dishes|  %>
        <section>
          <%= row do %>

    <% dishes.each do |dish| %>
    

            <%= span(4) do %>
                <%= index_box(:images => [dish.image.url], 
                    :title => dish.title, 
                    :excerpt => dish.excerpt, 
                    :link_label => dish.title, 
                    :link_url =>  page_path_for(dish)) %>
            <% end %>
    
    <% end %>

          <% end %>
        </section>

<% end %>




Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fullstack-cms-0.2.24 lib/generators/fullstack/cms/templates/rails/app/views/site/site/recipes.html.erb
fullstack-cms-0.2.23 lib/generators/fullstack/cms/templates/rails/app/views/site/site/recipes.html.erb
fullstack-cms-0.2.22 lib/generators/fullstack/cms/templates/rails/app/views/site/site/recipes.html.erb