Sha256: 3e67557672aaf67222478f500a2030449e821aa0d9a0a0fab582b71e8da61539

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

<%# выдать линейный список предложений с иконками СТОЛБЦАМИ %>
<div class='<%= wrapper_div_class %>'>

  <% list.each_with_index do |list_in_column, i| %>

    <div class="column_<%= i %> clearfix column" style="<%= css_for_column %>">
      <ul>

        <% list_in_column.each do |offer|%>
            <li class="clearfix">
              <%= render_image_link_lazy({
                                                 :alt_image => offer.title,
                                                 :image => offer.ophoto_thumb,
                                                 :a_href => my_url_for_offer(offer),
                                                 :a_class => '',
                                                 :a_css_style => css_for_a,
                                                 :a_rel => 'nofollow'
                                         }) %>

              <%= link_to offer.title, my_url_for_offer(offer), title: offer.title, style: css_for_title, class: 'title' %>
            </li>
        <% end %>

      </ul>
    </div>

  <% end %>

</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
c80_catoffers-0.1.0.8 app/views/c80_catoffers/_offers_list_iconed_columns.html.erb
c80_catoffers-0.1.0.7 app/views/c80_catoffers/_offers_list_iconed_columns.html.erb
c80_catoffers-0.1.0.6 app/views/c80_catoffers/_offers_list_iconed_columns.html.erb
c80_catoffers-0.1.0.5 app/views/c80_catoffers/_offers_list_iconed_columns.html.erb
c80_catoffers-0.1.0.4 app/views/c80_catoffers/_offers_list_iconed_columns.html.erb
c80_catoffers-0.1.0.3 app/views/c80_catoffers/_offers_list_iconed_columns.html.erb