Sha256: 564597001ca70b0ad7ea8f28f9d4962e5f8d4e3642dd6fc0418804dc8577df90

Contents?: true

Size: 1.57 KB

Versions: 6

Compression:

Stored size: 1.57 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? -%>
  <h5><a name="trackbacks"><%= _("Trackbacks") %></a></h5>
  <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 => "/articles/trackback", :collection => @article.published_trackbacks) %>
  </ol>
  <% end -%>
<% end -%>

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

  <% if !@article.comments_closed? and @article.published_comments.size > 0 %>
    <h5><a name="comments"><%= _("Comments") %></a></h5>
  <% end -%>

  <% unless @article.comments_closed? %>
    <p><a href="#commentform"><%= _("Leave a comment") %></a></p>
  <% 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/scribbish/views/articles/read.html.erb
typo-5.4.4 themes/scribbish/views/articles/read.html.erb
typo-5.4.3 themes/scribbish/views/articles/read.html.erb
typo-5.4.2 themes/scribbish/views/articles/read.html.erb
typo-5.4.1 themes/scribbish/views/articles/read.html.erb
typo-5.4 themes/scribbish/views/articles/read.html.erb