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

Ajax

开发平台:

Others

  1. <!--
  2. <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  3.        xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
  4.        xmlns:dc="http://purl.org/dc/elements/1.1/">
  5. <rdf:Description
  6.     rdf:about=""
  7. <% if @article.allow_pings? -%>
  8.     trackback:ping="<%= @article.trackback_url %>"
  9. <% end -%>
  10.     dc:title="<%=h @article.title.gsub(/-+/, '-') %>"
  11.     dc:identifier="<%= @article.permalink_url %>"
  12.     dc:description="<%=h (html(@article).strip_html[0..255]).gsub(/-+/, '-') %>"
  13.     dc:creator="<%= h @article.author %>"
  14.     dc:date="<%= @article.updated_at.xmlschema %>" />
  15. </rdf:RDF>
  16. -->
  17. <div class="post"<%= onhover_show_admin_tools(:article) %>>
  18.   <%= link_to("edit", { :controller => "admin/content", :action => "edit", :id => @article.id },
  19.         :class => "admintools", :style => "display: none", :id => "admin_article") %>
  20.   <h2><%=h @article.title %></h2>
  21.   <p class="auth"><%= _("Posted by")%> <%= author_link(@article) %>
  22.   <%= js_distance_of_time_in_words_to_now @article.published_at.utc %></p>
  23.   <%= html(@article) %>
  24. </div>
  25. <p class="meta">
  26.   <%= article_links @article %>
  27. </p>
  28. <% if @article.allow_comments? or @article.published_comments.size > 0 -%>
  29.   <a name="comments"></a><h4 class="blueblk"><%= _('Comments') %></h4>
  30.   <% unless @article.comments_closed? -%>
  31.     <p class="postmetadata alt">
  32.       <small><a href="#respond"><%= _("Leave a response")%></a></small>
  33.     </p>
  34.   <% end -%>
  35.   <ol class="comment-list" id="commentList">
  36.   <% if @article.published_comments.blank? %>
  37.     <li id="dummy_comment" style="display: none"></li>
  38.   <% else %>
  39.     <%= render(:partial => "/articles/comment", :collection => @article.published_comments) %>
  40.   <% end %>
  41.   </ol>
  42. <% end -%>
  43. <% if @article.allow_pings? -%>
  44.   <a name="trackbacks"></a><h4 class="blueblk"><%= _("Trackbacks")%></h4>
  45.   <p>
  46.     <%= _("Use the following link to trackback from your own site")%>:<br/>
  47.     <span class="light-bg"><%= @article.trackback_url %></span>
  48.     </p>
  49.   <%= content_tag(:ol,
  50.         render(:partial => "/articles/trackback", :collection => @article.published_trackbacks),
  51.         :id => 'trackbackList', :class => 'trackback-list') unless @article.published_trackbacks.blank? %>
  52. <% end -%>
  53. <p class="postmetadata alt">
  54.   <small>
  55.   <a href="<%= @article.feed_url(:rss) %>" title="RSS Feed"><%= _("RSS feed for this post")%></a>
  56. <% if @article.allow_pings? -%>
  57.   <a href="<%= @article.trackback_url %>" ><%= _("trackback uri")%></a>
  58. <% end -%>
  59.   </small>
  60. </p>
  61. <% unless @article.comments_closed? -%>
  62.   <%= render :partial => '/articles/comment_box' %>
  63. <% else -%>
  64.   <p><%= _("Comments are disabled")%></p>
  65. <% end -%>