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

Ajax

开发平台:

Others

  1. <div class='category-excerpt <%= "border" if @article_counter >= 0 %>' id="article-<%= article.id %>">
  2.   <h2><%= (controller.controller_name == 'redirect') ? article.title : link_to_permalink(article,article.title) %></h2>
  3.   <% unless controller.action_name == 'redirect' %>
  4.     <% if article.excerpt? %>
  5.       <%= article.excerpt %>
  6.     <% else %>
  7.       <%= article.html(:body) %>
  8.     <% end %>
  9.   <% else %>
  10.     <%= article.html(:body) %>
  11.     <% if article.extended? %>
  12.       <%= article.html(:extended) %>
  13.     <% end %>
  14.   <% end %>
  15.   <div class='author'>
  16.     Published on <%= _(article.published_at.utc.strftime(_("%%a, %%d %%b %%Y %%H:%%M", article.published_at.utc))) %>
  17.   </div>
  18.   <div class='comments'>
  19.     <%= display_comments_counter(article) %>
  20.   </div>
  21. </div>
  22. <% @article_counter+=1 %>