Sha256: 526a5030c51ed6fb4020893d74bd7424907ab3f197a2e098333793f7c56ea2bb

Contents?: true

Size: 1.51 KB

Versions: 6

Compression:

Stored size: 1.51 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 => '/articles/article', :object => @article %>


<% if @article.allow_pings? -%>
  <h2 id="trackbacks-title"><a id="trackbacks"><%= _("Trackbacks")%></a></h2>
  <p class="trackbackurl">
    <%= _("Use the following link to trackback from your own site")%>:<br />
    <%= @article.trackback_url %>
  </p>

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

<% if @article.allow_comments? or @article.published_comments.size > 0 -%>


  <% unless @article.comments_closed? and @article.published_comments.size == 0 %>
    <h2 id="comments-title"><a id="comments"><%= _("Comments")%></a></h2>
  <% end -%>

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

<%= render :partial => '/articles/comment_form' unless @article.comments_closed? %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
typo-5.5 themes/typographic/views/articles/read.html.erb
typo-5.4.4 themes/typographic/views/articles/read.html.erb
typo-5.4.3 themes/typographic/views/articles/read.html.erb
typo-5.4.2 themes/typographic/views/articles/read.html.erb
typo-5.4.1 themes/typographic/views/articles/read.html.erb
typo-5.4 themes/typographic/views/articles/read.html.erb