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

Ajax

开发平台:

Others

  1. <div class="article" id="article-<%= @article.id %>">
  2.   <h1><%= link_to_permalink(@article,@article.title) %></h1>
  3.   <%= @article.html(:body) %>
  4.   <%= @article.html(:extended) %>
  5.   <div id='meta'>
  6.     <p>
  7.       <%= _(@article.published_at.utc.strftime(_("%%a, %%d %%b %%Y %%H:%%M", @article.published_at.utc))) %>
  8.       <%= category_links(@article) unless @article.categories.empty? %>
  9.     </p>
  10.     <p><%= tag_links(@article) unless @article.tags.empty? %></p>
  11.   </div>
  12.   <% if @article.user.twitter and @article.user.show_twitter %>
  13.   <h2 id='twitter'>
  14.     <%= _("If you liked this article you can %s", link_to(_("add me to Twitter"), "http://twitter.com/#{@article.user.twitter}"))%>
  15.   </h2>
  16.   <% end %>
  17.   <% if @article.allow_comments? or @article.published_comments.size > 0 -%>
  18.   <h3 class="feedback" id="commentaires">
  19.     <%= display_comments_counter(@article) %>
  20.     <a href="#commentform" ref="nofollow"> &raquo;</a>
  21.   </h3>
  22.   <%= render :partial => "/articles/comment_list" %>
  23.   <% end -%>
  24.   <%= render :partial => '/articles/comment_form' if @article.allow_comments? %>
  25.   <% if @article.allow_pings? -%>
  26.   <h5 class="feedback" id="trackbacks"><%= _('Trackbacks for')%> <em><%= @article.title %></em></h5>
  27.   <% unless @article.published_trackbacks.blank? -%>
  28.   <ol id="trackbacks" class="trackbacks">
  29.     <%= render(:partial => "/articles/trackback", :collection => @article.published_trackbacks) %>
  30.   </ol>
  31.   <% end -%>
  32.   <% end -%>
  33. </div>