Sha256: d3556b141376b0f24e0fdc554a10a19f6fbf7a6fa25d7402d2f4ac6d68bf12eb

Contents?: true

Size: 1.33 KB

Versions: 6

Compression:

Stored size: 1.33 KB

Contents

<!--
<rdf:RDF
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
  xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description
  rdf:about=""
  trackback:ping="<%= @article.trackback_url %>"
  dc:title="<%=h @article.title.gsub(/-+/, '-') %>"
  dc:identifier="<%= @article.permalink_url %>"
  dc:description="<%=h (@article.html.strip_html[0..255]).gsub(/-+/, '-') %>"
  dc:creator="<%= h @article.author %>"
  dc:date="<%= @article.updated_at.xmlschema %>" />
</rdf:RDF>
-->

<%= render :partial => 'article', :object => @article %>

<% if @article.allow_pings? -%>
  <h2><a name="trackbacks">Trackbacks</a></h2>
  <p>
    Use the following link to trackback from your own site:<br />
    <%= @article.trackback_url %>
  </p>

  <% unless @article.published_trackbacks.blank? -%>
  <ol id="trackbacks" class="trackbacks">
    <%= render(:partial => "trackback", :collection => @article.published_trackbacks) %>
  </ol>
  <% end -%>
<% end -%>

<% if @article.allow_comments? or @article.published_comments.size > 0 -%>
  <h2><a name="comments">Comments</a></h2>
  <p><a href="#commentform">Leave a response</a></p>

  <div id="comments_div">
    <%= render :partial => "comment_list" %>
  </div>
<% end -%>

<%= render :partial => 'comment_form' if @article.allow_comments? %>

Version data entries

6 entries across 3 versions & 1 rubygems

Version Path
typo-5.0.2 themes/standard_issue/views/articles/read.html.erb
typo-5.0.1 themes/standard_issue/views/articles/read.html.erb
typo-5.0.1 test/mocks/themes/standard_issue/views/articles/read.html.erb
typo-5.0.2 test/mocks/themes/standard_issue/views/articles/read.html.erb
typo-5.0 test/mocks/themes/standard_issue/views/articles/read.html.erb
typo-5.0 themes/standard_issue/views/articles/read.html.erb