_article.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
- <div class='category-excerpt <%= "border" if @article_counter >= 0 %>' id="article-<%= article.id %>">
- <h2><%= (controller.controller_name == 'redirect') ? article.title : link_to_permalink(article,article.title) %></h2>
- <% unless controller.action_name == 'redirect' %>
- <% if article.excerpt? %>
- <%= article.excerpt %>
- <% else %>
- <%= article.html(:body) %>
- <% end %>
- <% else %>
- <%= article.html(:body) %>
- <% if article.extended? %>
- <%= article.html(:extended) %>
- <% end %>
- <% end %>
- <div class='author'>
- Published on <%= _(article.published_at.utc.strftime(_("%%a, %%d %%b %%Y %%H:%%M", article.published_at.utc))) %>
- </div>
- <div class='comments'>
- <%= display_comments_counter(article) %>
- </div>
- </div>
- <% @article_counter+=1 %>