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

Ajax

开发平台:

Others

  1. <div class="atomentry" id="article-<%= article.id %>">
  2.   <div class="title">
  3.     <h2 class="title"><%= (controller.action_name.include? 'permalink') ? article.title : link_to_permalink(article,article.title) %></h2>
  4.     <div class="meta">
  5.       <%= _("Posted by") %> <cite><%= author_link(article) %></cite> <abbr class="published" title="<%= article.published_at.xmlschema %>"><%= js_distance_of_time_in_words_to_now article.published_at %></abbr>
  6.     </div>
  7.   </div>
  8.   <div class="content">
  9.     <% unless controller.action_name == 'redirect' %>
  10.       <% if article.excerpt? %>
  11.         <%= article.excerpt %>
  12.       <% else %>
  13.         <%= article.html(:body) %>
  14.         <% if article.extended? %>
  15.           <div class="extended">
  16.             <p><%= link_to_permalink article,"Continue reading..." %></p>
  17.           </div>
  18.         <% end %>
  19.       <% end %>
  20.     <% else %>
  21.       <%= article.html(:body) %>
  22.       <div class="extended">
  23.         <%= article.html(:extended) %>
  24.       </div>
  25.     <% end %>
  26.   </div>
  27.   <% if controller.controller_name == "articles" and controller.action_name == "redirect" %>
  28.   <div class="meta">
  29.     <p class="infos"><small>
  30.       <%= _("This entry was posted on %s", content_tag(:abbr, js_distance_of_time_in_words_to_now(@article.published_at), {:class => 'published', :title => @article.published_at.xmlschema})) %>
  31.       <%= _("and %s", category_links(@article)) unless @article.categories.empty? %>. 
  32.       <%= _("You can follow any any response to this entry through the %s", link_to(_("Atom feed"), @auto_discovery_url_atom)) %>. 
  33.       <%= _("You can leave a %s", link_to_permalink(article, _('comment'), 'comments')) unless @article.comments_closed? %> 
  34.       <%= _("or a %s from your own site", link_to_permalink(@article, _('trackback'), 'trackbacks')) if @article.allow_pings? %>.
  35.     </small></p>
  36.     <p class="tags">
  37.       <%= tag_links(@article) unless @article.tags.empty? %>
  38.     </p>
  39.   </div>    
  40.   <% else %>
  41. <p class="links">
  42. <%= link_to_permalink(article, _("Read full article"), nil, 'more') if controller.action_name != 'permalink' %>
  43. <%= link_to_permalink(article,pluralize(article.published_comments.size, _('no comments') , _('1 comment'), __('%d comments')),'comments', 'comments') %>
  44. </p>    
  45.   <% end %>
  46.   <br style="clear: left;" />
  47. </div>