html

Ruby code posted by daSD
created at 19 Oct 12:38, updated at 21 Oct 09:27

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="container">
  <div class="headline">
    <h3>Новости</h3>
  </div>
  <% @news_pages.each do |news| %>
    <h4><%= link_to news.title, news_page_path(news), class: "hover-effect news_header" %></h4>
    <div class="news_image_container">
    <%= image_tag news.image.thumb.url, class: "news_small_image" %><br/>
    </div>
    <div class="content_text news">
      <span><%= news.description %></span>
    </div>
    <div class="clear_news"></div>
    <div class="news_cussion"></div>
  <% end %>
  </div>
</div>
539 Bytes in 4 ms with coderay