search.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <% @article_counter = -1 %>
  2. <h1><%= _('Search results for:')%> <%= h(params[:q]) %></h1>
  3. <% @articles.each do |article| %>
  4. <div class='category-excerpt <%= "border" if @article_counter >= 0 %>' id="article-<%= article.id %>">
  5.   <h2><%= link_to_permalink(article,article.title) %></h2>
  6.   <p><%= article.body.strip_html.slice(0, 300) %> [...]</p>
  7.   <div class='author'>
  8.     Le <%= "#{article.published_at.strftime('%d')} #{_(article.published_at.strftime('%B'))} #{article.published_at.strftime('%Y')}" %>
  9.   </div>
  10.   <div class='comments'>
  11.     <%= display_comments_counter(article) %>
  12.   </div>
  13. </div>
  14. <% @article_counter+=1 %>
  15. <% if @article_counter == 2 -%>
  16.   <% @article_counter = 0 %>
  17. <% end -%>
  18. <% if @article_counter == 0 -%>
  19.   <br class='clear' />
  20. <% end %>
  21. <% end %>
  22. <div id='paginate'>
  23. <%= will_paginate @articles, { :previous_label => 'Précédent', :next_label => 'Suivant'  } %>
  24. </div>